给键盘添加工具栏(按钮)_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 给键盘添加工具栏(按钮)

给键盘添加工具栏(按钮)

 2017/8/7 12:31:18  JX-Mr.D  程序员俱乐部  我要评论(0)
  • 摘要:p.p1{margin:0.0px0.0px0.0px0.0px;font:14.0pxMenlo;color:#ffffff}p.p2{margin:0.0px0.0px0.0px0.0px;font:14.0pxMenlo;color:#00b1ff}span.s1{}span.s2{color:#00b1ff}span.s3{color:#ffffff}span.s4{color:#ff4647}span.s5{color:#de38a5}span.s6{color:#08fa95}p
  • 标签:工具
class="brush:objc;gutter:true;"> UIToolbar *keyboardDoneButtonView = [[UIToolbar alloc] init];

    [keyboardDoneButtonView sizeToFit];

    UIBarButtonItem *doneButton = [[UIBarButtonItem alloc] initWithTitle:@"Done"

                                                                   style:UIBarButtonItemStylePlain target:self

                                                                  action:@selector(doneClicked:)];

    [keyboardDoneButtonView setItems:[NSArray arrayWithObjects:doneButton, nil]];

    self.textField.inputAccessoryView = keyboardDoneButtonView;

  

 

发表评论
用户名: 匿名