Reputation: 3
I'm new to the iPhone SDK and I wonder, where I get some standard buttons, that a lot of applications use. I wanted to have that button:
in an UIToolbar. Any advices please? :-)
Thanks in advance...
Upvotes: 0
Views: 151
Reputation: 135548
[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCompose target:myTarget action:mySelector];
Upvotes: 3