如何更改字体样式和大小UIBarButtonItem?

时间:2016-02-24 23:30:18

标签: swift uibarbuttonitem uitoolbar

我目前已经创建了一个带有弹出窗口大小按钮的工具栏,以及与相应文本字段交互时的日期选择器。

截图:

enter image description here

我希望能够更改按钮的字体样式和大小。

代码段:

UIToolBar创作:

/*** ToolBar setup DatePicker ***/
    let toolBar = UIToolbar(frame: CGRectMake(0, self.view.frame.size.height/6, self.view.frame.size.width, 40.0))
    toolBar.layer.position = CGPoint(x: self.view.frame.size.width/2, y: self.view.frame.size.height-20.0)
    toolBar.barStyle = UIBarStyle.Default
    toolBar.tintColor = UIColor.init(red: 0, green: 122/255, blue: 1, alpha: 1.0)
    toolBar.backgroundColor = UIColor.grayColor()

UIBarButton宣言:

let okBarBtn = UIBarButtonItem(title: "Done", style: UIBarButtonItemStyle.Done, target: self, action: "donePressed:")

1 个答案:

答案 0 :(得分:2)