Pet*_*rbo 7 keyboard uitextview ios
我为a 添加了一个UIToolBar带有UIBarButtonIteminputAccessoryView的UITextView.它工作正常,但UIBarButtonItem可以在它的框架外触摸,也许在右边外面50像素.这没什么大不了的,但它让我很烦.谁知道为什么?
这是我的代码(ARC):
UIToolbar *toolBar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, self.view.bounds.size.height, 320, 44)];
toolBar.barStyle = UIBarStyleBlack;
toolBar.translucent = YES;
UIBarButtonItem *doneButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(doneWriting:)];
[toolBar setItems:[NSArray arrayWithObjects:doneButton, nil]];
self.messageTextView.inputAccessoryView = toolBar;
Run Code Online (Sandbox Code Playgroud)
在iOS 6中,它看起来像预期的那样.不错的提示:如果您希望按钮显示在右侧而不是左侧,请使用以下方法之一:
UIBarButtonItem *flexibleSpace = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:nil];
Run Code Online (Sandbox Code Playgroud)
然后用以下内容初始化工具栏:
[toolBar setItems:[NSArray arrayWithObjects:flexibleSpace, doneButton, nil]];
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
9367 次 |
| 最近记录: |