Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
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

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.

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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