欢迎来到天天文库
浏览记录
ID:32399469
大小:231.50 KB
页数:4页
时间:2019-02-04
《ios开发自定义键盘》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、IOS开发CreatingCustomKeyboards(自定义键盘)1.新建View-based-app起名:Feelings2.在FeelingsViewController.xib中添加一个UITextView3.添加一个新的XIB起名:MoodKeyboard4.在IB中打开MoodKeyboard,从library中拖一个toolbar到View中,将View的高度设为toolbar的高度(44px)!然后再拖一个UIButton到toolbar中,如图5.设置MoodKeyboard-view-Toolbar的Autosizing,如图6.将moodKe
2、yboard的File'sOwner的ClassIdentify选为FeelingsViewController1.到些,FeelingsViewController控制都两个XIB,一个是MoodKeyboard.xib,另一个是FeelingsViewController.xib2.在feelingsViewController.h中代码如下:#import@interfaceFeelingsViewController:UIViewController{}@property(nonatomic,retain)IBOutletUIV
3、iew*moodKeyboard;@property(nonatomic,retain)IBOutletUITextView*textView;-(IBAction)btnClicked:(id)sender;@end9.在feelingsViewController.m中添加代码如下@synthesizetextView,moodKeyboard;-(IBAction)btnClicked:(id)sender{[textViewsetText:@"AAA"];[self.textViewresignFirstResponder];}-(void)viewDidL
4、oad{[superviewDidLoad];[[NSBundlemainBundle]loadNibNamed:@"MoodKeyboard"owner:selfoptions:nil];self.textView.inputAccessoryView=self.moodKeyboard;}10.再次通过IB打开MoodKeyboard.xib,将View的UIButton与方法-(IBAction)btnClicked:(id)sender相连将View与moodKeyboard,相连!11.用IB打开FeelingsViewController.xib,将IB
5、outlet的UITextView*textView与TextView相连!12.运行程序点击TextView,结果如图:
此文档下载收益归作者所有