将工具栏添加到 UISplittview 的左侧
Posted
技术标签:
【中文标题】将工具栏添加到 UISplittview 的左侧【英文标题】:Add toolbar to the left side of an UISplittview 【发布时间】:2012-09-27 10:32:26 【问题描述】:如何在 splittview 的左侧添加工具栏? 我有一个导航控制器 我已经试过了:
UIToolbar *toolbar = [[UIToolbar alloc] init];工具栏.barStyle = UIBarStyleDefault;
[工具栏 sizeToFit];
UIBarButtonItem *infoButton = [[UIBarButtonItem alloc] initWithTitle:@"back" 样式:UIBarButtonItemStyleBordered 目标:self 动作:@selector(info_clicked:)];
[工具栏 setItems:[NSArray arrayWithObjects:infoButton,nil]];
[self.navigationController.view addSubview:toolbar];
但它没有工作。它出现在顶部而不是底部
MEMA
【问题讨论】:
***.com/questions/5958956/… 这可能对你有帮助。 【参考方案1】:您不必为 UINavigationController 创建自己的工具栏,只需将 toolbarHidden
设置为 NO
即可使用其内置工具栏并将您的 UIBarButtonItem
添加到其中。
【讨论】:
以上是关于将工具栏添加到 UISplittview 的左侧的主要内容,如果未能解决你的问题,请参考以下文章