我目前已经创建了一个带有弹出窗口大小按钮的工具栏,以及与相应文本字段交互时的日期选择器。
截图:
我希望能够更改按钮的字体样式和大小。
代码段:
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:")