1
我正在使用我的導航工具欄中的Edit
按鈕將表視圖設置爲編輯模式。酒吧按鈕的標籤默認爲Edit
。UITableView:重命名編輯按鈕(UIBarButtonSystemItemEdit)
如何將其標籤更改爲其他內容?
我不能使用任何其他類型的BarButton,因爲我需要設置表中的編輯模式,我希望得到setEditing:animated:
行爲是由觸發內置Edit
按鈕。
self.editToolbarButton = [[UIBarButtonItem alloc]
initWithBarButtonSystemItem:UIBarButtonSystemItemEdit
target:self action:@selector(setSearchEditMode:)];