-1
取出黑色的背景,這是我的函數如何當鍵盤出現
- (void)keyboardWillShow:(NSNotification *)notification
{
keyboardSize = [notification.userInfo[UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;
CGRect frame = [self.tableView frame];
frame.size.height -= keyboardSize.height;
[self.tableView setFrame:frame];
}
它工作得很好,但是當鍵盤出現有一個黑色的背景下,我想使白色或透明。
點擊編輯
點擊後,同時打開鍵盤
鍵盤是開放的,並準備輸入
之前是有辦法做到這一點?