我尝试在导航栏中添加“添加按钮”,但创建的按钮是一个矩形按钮,里面没有文字,而不是“+”按钮,为什么?
UIBarButtonItem *addButton = [[UIBarButtonItem alloc] initWithTitle:@"" style:UIBarButtonSystemItemAdd target:self action:@selector(ajouterItem)];
self.navigationItem.rightBarButtonItem = addButton;
[addButton release];
答案 0 :(得分:4)
您将初始化程序与标题/样式的初始化程序混合在一起。你想要这个表格:
- (id)initWithBarButtonSystemItem:(UIBarButtonSystemItem)systemItem target:(id)target action:(SEL)action
这样称呼:
UIBarButtonItem *addButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd target:self action:@selector(ajouterItem)];