0
我正在開發一個基於TabBar的應用程序,當在第一個視圖中選中一個單元格時出現一個UIViewController。我想添加一個UIToolBar,其中包含由選定單元格的segue給出的一些信息(在項目中)。我已經嘗試過的代碼波紋管(類似的問題,發現),但它不工作:添加一個新的UIToolbar到UIViewController
if (self) {
NSArray* toolbarItems = [NSArray arrayWithObjects:
[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemAdd
target:self
action:@selector(addStuff:)],
[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemSearch
target:self
action:@selector(searchStuff:)],
nil];
[self setToolbarItems:toolbarItems];
[self.navigationController setToolbarHidden:NO animated: YES];
}
return self;
有誰知道另一種方式來過一個由導航控制器推斷添加新UIToolBar?