data.frame(key = rep(c('a', 'b'), c(length(a), length(b))), value = c(a, b))
我应该在故事板中更改或命名吗?
答案 0 :(得分:0)
viewController
应嵌入UINavigationController
中,以实现此目的。
请按照以下步骤操作:
UIViewController
另一件事,你做了:
UIImage(named: "image.jpg")!
整个文件名" image.jpg"只有在项目中将图像添加为普通文件时才应该给出 并且不要强行打开包装,因为如果对象无法初始化,则会导致应用程序崩溃。
然而......如果图像已添加到资产目录中,那么您应该这样做
UIImage(named: "image")
答案 1 :(得分:0)
如果没有添加,您必须添加导航控制器 然后它会工作
答案 2 :(得分:0)
func navtitile(){
let signinBTN = UIButton(type: .system)
signinBTN.frame = CGRect(x: 0, y: 0, width: 60, height: 30)
signinBTN.setImage(#imageLiteral(resourceName: "image"), for: .normal)
let customBarItem = UIBarButtonItem(customView: signinBTN)
navigationItem.rightBarButtonItem = customBarItem
}