
How can i append text or string to UITextField in my iPhone application? Thanks!

Appending a string / text to a UITextField
-(Void)buttonPressed {
NSString *myS = [NSString stringWithFormat:@"%@YourAns.", textField.text];
textField.text = myS;
}
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.