内置保存按钮文本

时间:2011-03-03 10:18:43

标签: iphone

我想在这里更改按钮的标题我可以更改默认情况下即可“保存”可以更改

UIBarButtonItem *dowButton = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemSave
                                                                           target:self action:@selector(download)];

强文

2 个答案:

答案 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