2014-02-19 36 views
0

我的應用程序中有一個屏幕,其中包含多個UITextViews。用戶需要能夠快速在UITextView之間來回切換以做筆記。我的想法是在鍵盤上方用5個按鈕創建一個UIToolbar,當按下它時,它切換到該UITextView,就像許多應用程序中的Next和Previous按鈕一樣,只是更具體。不幸的是,我沒有任何代碼可以進一步說明我正在嘗試做什麼,因爲我完全不知道從哪裏開始。我從來沒有做過任何自定義鍵盤控制。使用多個選項在鍵盤上方製作UIToolbar

回答

0

你在找什麼是inputAccessoryView。你不必這樣擔心動畫等只要做到:

textField.inputAcccessoryView = <your_custom_view> 

這是我在我的代碼inputAccessoryView

- (UIView *)textFieldAccessoryDoneButton { 
    UIView *accessoryView = [[UIView alloc] init]; 
    accessoryView.backgroundColor = [UIColor blackColor]; 

    UIButton *accessoryDoneButton = <your_button_here>; 
    accessoryDoneButton.titleLabel.font = [UIFont fontWithName:Gotham_Bold size:12]; 
    [accessoryView addSubview:accessoryDoneButton]; 

    return accessoryView; 
} 
+0

你能不能進入一個更位深度關於inoutAccessoryView應該如何實現?我從來沒有聽說過它。 :P – stevethedude

+0

請檢查編輯的答案 – unspokenblabber