Paul
Paul

Reputation: 79

How can I assign the UIBarButtonSystemItemAction icon to a UIButton?

I have a UIButton within a UITableViewCell and I would like to assign the standard 'Action' icon to this button.

This icon is normally associated with a UIBarButtonItem by assigning the icon to UIBarButtonSystemItemAction, however I cannot add a UIBarButtonItem into the UITableViewCell's view and therefore I would like to know if it's possible to assign this icon to a plain UIButton?

Thanks,

Paul

Upvotes: 1

Views: 3353

Answers (1)

coneybeare
coneybeare

Reputation: 33101

It is not possible through the current 3.1.3 (or lower) iPhone SDK. You will have to google around for the image, or make it yourself, and place it on the button.

Upvotes: 1

Related Questions