inbuilt save button text
I want to change here title of button can i change by default it is coming 'save' can it be changed
UIBarButtonItem *dowButton = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemSave
开发者_Go百科 target:self action:@selector(download)];
strong text
Create an own UIBarButtonItem
instead of using the UIBarButtonSystemItemSave
:
UIBarButtonItem *dowButton = [[[UIBarButtonItem alloc] initWithTitle:@"Download" style:UIBarButtonItemStylePlain target:self action:@selector(download)] autorelease];
This will helps you :-)
Try Using the method
- (id)initWithTitle:(NSString *)title style:(UIBarButtonItemStyle)style target:(id)target action:(SEL)action
精彩评论