我环顾四周,我不确定这个问题是否在 iOS 5 中得到解决。我找到了这篇文章
下面有一些代码,但我不确定我应该把它放在哪里?
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 3.2) {
if([[keyboard description] hasPrefix:@"<UIPeripheralHost"] == YES)
[keyboard addSubview:doneButton];
} else {
if([[keyboard description] hasPrefix:@"<UIKeyboard"] == YES)
[keyboard addSubview:doneButton];
}