在我的應用程序中,我開發了一種本地語言的自定義鍵盤。現在,這個鍵盤可以很好地處理UITextField和UITextView.For這兩個我實現這樣的自定義鍵盤。如何使用UISearchBar實現自定義鍵盤?
textField.inputView = Customkeyboard;
textView.inputView = Customkeyboard;
但是,當我爲的UISearchBar
searchBar.inputView = Customkeyboard;
實施其其給我下面的錯誤。
error: object cannot be set - either readonly property or no setter found
我還設置其屬性和合成,卻無力解決這一problem.Can任何一個可以幫助我解決這個problem.Thanx。
是的,當你說它不是你的時候你是正確的,因此你需要添加上面的行。您需要添加上面的行來根據文檔 –
提供此信息否否您還沒有自定義搜索欄。你需要繼承這個搜索欄。就像我上面所做的那樣,然後做你所做的事 –
更新我的代碼 –