我不能在情节提要中同时将标题和图像设置到导航栏上的右侧栏项吗?
Cann't I set title and Image to the right bar item on navigation bar at the same time in storyboard?
我想设置右键项目是这样的:
它有标题和下图。
但是在情节提要中,我不能这样做:
我只能设置标题和图片其中之一,设置图片就不能设置标题,设置标题就不能设置图片
我试过使用 UIButton 和 Button Bar Item 来实现,得到相同的结果。
有朋友知道怎么做吗?
您可以尝试将自定义视图添加到您的栏按钮项目
var RightView = UIView(frame: CGRectMake(0, 0, 100, 44))
// you can add in RightView, your title in uilable and your image in imageview
var RightBarButton = UIBarButtonItem(customView: RightView)
self.navigationItem.rightBarButtonItem = RightBarButton
您可以简单地将 UIButton 添加到 storyBoard 的 rightBarItem 中。并根据您的需要自定义该按钮..
添加 UIButton 后检查视图层次结构。
我想设置右键项目是这样的:
它有标题和下图。
但是在情节提要中,我不能这样做:
我只能设置标题和图片其中之一,设置图片就不能设置标题,设置标题就不能设置图片
我试过使用 UIButton 和 Button Bar Item 来实现,得到相同的结果。
有朋友知道怎么做吗?
您可以尝试将自定义视图添加到您的栏按钮项目
var RightView = UIView(frame: CGRectMake(0, 0, 100, 44))
// you can add in RightView, your title in uilable and your image in imageview
var RightBarButton = UIBarButtonItem(customView: RightView)
self.navigationItem.rightBarButtonItem = RightBarButton
您可以简单地将 UIButton 添加到 storyBoard 的 rightBarItem 中。并根据您的需要自定义该按钮..
添加 UIButton 后检查视图层次结构。