我在主視圖控制器中將以下代碼添加到viewWillAppear:animated
。無法在iPad mini上收到「UIKeyboardWillShowNotification」
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(showKeyboard:) name:UIKeyboardWillShowNotification object:nil];
而且,我在同一類中實現該方法,
- (void)showKeyboard:(NSNotification *)notification
{
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:nil message:@"Keyboard will appear." delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil];
[alert show];
}
主視圖控制器具有UITextField對象。
在iPad2(iOS 5.0)中,聚焦時出現警報視圖。 但是,在iPad mini(iOS 6.0)中,除軟件鍵盤外不會顯示任何內容。
我想讓iPad mini的行爲與iPad2相同。
感謝,
是「viewWillAppeaer:animated」你如何在代碼中拼寫它? – Bejmax
哦,這只是一個拼寫錯誤。謝謝。 – user1562079