我想有一個大的加號按鈕的右邊欄按鈕,下面的代碼工作,而這是在故事板,但一切都移動到廈門國際銀行文件和獨立.swift文件後,這是唯一打破的。添加自定義的UIBarButtonItem到UINavigationBar的
let button = UIButton(type: .Custom)
button.setTitle("+", forState: .Normal)
button.titleLabel?.font = UIFont.systemFontOfSize(20.0)
button.frame = CGRectMake(0, 0, 100, 40)
self.navigationItem.rightBarButtonItem = UIBarButtonItem(customView: button)
self.navigationItem.rightBarButtonItem = UIBarButtonItem(title: "+", style: .Plain, target: self, action: #selector(GroupNavViewController.onCreate))
self.navigationItem.rightBarButtonItem?.setTitleTextAttributes([NSFontAttributeName:UIFont.systemFontOfSize(40)], forState: .Normal)
UINavigationController是它自己的.swift文件,沒有xib文件。
我不明白它爲什麼在故事板中起作用,但現在不行。
理想情況下,我想有一個大的加號按鈕(爲正常字體大小似乎有點太小)
你是怎麼把在廈門國際銀行文件?導航欄? – MudOnTire
導航控制器包含另一個視圖控制器,但本身沒有xib文件。 https://github.com/gomeow/BillSplitter/blob/master/BillSplitter/GroupNavViewController.swift#L20-L26 –