Hi , i want creating uibarbutton without interface builder = (whit code) and this button is style camera please help me
+1
A:
UIBarButtonItem* cameraBarButtonItem =
[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemCamera
target:self action:@selector(myCameraAction)];
This will create a UIBarButtonItem with the system item icon of the camera.
DonnaLea
2010-08-26 01:54:15
Thanks Donnalea , great job
Milad
2010-09-05 19:35:16