如何在splittview的左侧添加工具栏? 我有一个导航控制器 我已经尝试过了:
UIToolbar * toolbar = [[UIToolbar alloc] init]; toolbar.barStyle = UIBarStyleDefault;
[toolbar sizeToFit];
UIBarButtonItem * infoButton = [[UIBarButtonItem alloc] initWithTitle:@“后退”样式:UIBarButtonItemStyleBordered target:self 动作:@selector(info_clicked:)];
[toolbar setItems:[NSArray arrayWithObjects:infoButton,nil]];
[self.navigationController.view addSubview:toolbar];
但它没有工作。它出现在顶部而不是底部
MEMA
答案 0 :(得分:1)
您不必为UINavigationController创建自己的工具栏,只需将toolbarHidden
设置为NO
即可使用其内置工具栏并将UIBarButtonItem
添加到其中。