How to save and retrieve text whi开发者_高级运维ch is in UITextView?
If anybody knows please help me. Give me some sample code.
Thank you.
Use the text
property.
// set text myTextView.text = @"my text"; // get text NSString *txt = myTextView.text;
How to save and retrieve text whi开发者_高级运维ch is in UITextView?
If anybody knows please help me. Give me some sample code.
Thank you.
Use the text
property.
// set text myTextView.text = @"my text"; // get text NSString *txt = myTextView.text;
精彩评论