因此,numpad 键盘默认没有“完成”或“下一步”按钮,所以我想添加一个。在 iOS6及以下版本中,有一些在键盘上添加按钮的技巧,但是在 iOS7中似乎不起作用。
首先我订阅了显示通知的键盘
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWillShow:)
name:UIKeyboardWillShowNotification
object:nil];
然后,当键盘出现时,我尝试添加一个按钮:
- (void)keyboardWillShow:(NSNotification *)note
{
// create custom button
UIButton *doneButton = [UIButton buttonWithType:UIButtonTypeSystem];
doneButton.frame = CGRectMake(0, 50, 106, 53);
doneButton.adjustsImageWhenHighlighted = NO;
[doneButton setTitle:@"Done" forState:UIControlStateNormal];
[doneButton addTarget:self action:@selector(dismissKeyboard) forControlEvents:UIControlEventTouchUpInside];
// locate keyboard view
UIWindow* tempWindow = [[[UIApplication sharedApplication] windows] objectAtIndex:1];
UIView* keyboard;
for(int i=0; i<[tempWindow.subviews count]; i++)
{
keyboard = [tempWindow.subviews objectAtIndex:i];
// keyboard view found; add the custom button to it
if([[keyboard description] hasPrefix:@"UIKeyboard"] == YES)
[keyboard addSubview:doneButton];
}
}
但是 for 循环不会运行,因为它找不到任何子视图。有什么建议吗?我找不到任何 iOS7的解决方案,所以我应该用不同的方式来做这件事吗?
编辑: 感谢所有对工具栏家伙的建议,但我宁愿不走这条路,因为我相当空间贫乏(这是一种丑陋)。