答案 0 :(得分:1)
设置UIBarButtonItem外观以更改字体
// let font = UIFont(name: "HelveticaNeue-UltraLight", size: 12) //customise with your font
let font = UIFont.boldSystemFontOfSize(17);
UIBarButtonItem.appearance().setTitleTextAttributes([NSFontAttributeName:font], forState: UIControlState.Normal) ;
答案 1 :(得分:0)
看起来我将按钮样式设置为Plain而不是Done。对于编辑/保存/完成按钮,您需要将样式设置为完成,然后将标识符设置为编辑/保存/完成等。