可能重複時:
How to add UITextfield on click of UIButton and make it editable如何顯示文本框上點擊按鈕
我想顯示的UITextField變成可編輯的點擊一個按鈕。 如果有人知道請給我答案。
可能重複時:
How to add UITextfield on click of UIButton and make it editable如何顯示文本框上點擊按鈕
我想顯示的UITextField變成可編輯的點擊一個按鈕。 如果有人知道請給我答案。
的UIButton的像這樣創建一個IBAction爲:
-(IBAction)showTextFied:(id)sender{
yourTextField.editable=YES;//turn to editable mode if it's not
[yourTextField becomeFirstReponder];//show the keyboard
}
感謝此 – user1049470
不客氣,請記住接受答案,如果它有用。並且請記住,您應該使用Google(或SO搜索)來查找此類問題的解決方案...並閱讀documentation..cheers – Mat
要顯示它在相同的UIView? – Minakshi