In iPhone, Autocompletion for message typing purpose in textfield, type a message like “iph” visible a placeholder in background of the text like “one”. How to make this? please any one help me…
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Set a delegate on your text field. In the delegate, override
textField:shouldChangeCharactersInRange:replacementString:. That’s where you can look at what the user has typed and is about to type and decide what autocompletion text to display.