i want creating uibarbutton without interface builder = (whit code) and this button is style camera please help me

link|improve this question

0% accept rate
i want creating in view did load – Milad Aug 24 '10 at 15:57
What do you mean by "this button is style camera"? – Shaggy Frog Aug 24 '10 at 16:09
I want to create programmatically a button like the one we see on the native iphone camera application when you want to take a picture – Milad Aug 24 '10 at 21:42
feedback

1 Answer

UIBarButtonItem* cameraBarButtonItem = 
     [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCamera
     target:self action:@selector(myCameraAction)];

This will create a UIBarButtonItem with the system item icon of the camera.

link|improve this answer
Thanks Donnalea , great job – Milad Sep 5 '10 at 19:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.