我想在这里更改按钮的标题我可以更改默认情况下即可“保存”可以更改
UIBarButtonItem *dowButton = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemSave
target:self action:@selector(download)];
强文
答案 0 :(得分:4)
创建自己的UIBarButtonItem
,而不是使用UIBarButtonSystemItemSave
:
UIBarButtonItem *dowButton = [[[UIBarButtonItem alloc] initWithTitle:@"Download" style:UIBarButtonItemStylePlain target:self action:@selector(download)] autorelease];
这将有助于您: - )
答案 1 :(得分:0)
尝试使用方法
- (id)initWithTitle:(NSString *)title style:(UIBarButtonItemStyle)style target:(id)target action:(SEL)action