标签:问题 ui 方法 text 如何 return 简单 ld ie
问题如题。
解决方法:
// TextField delegate method
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
if (textField == YourTextField){
retrun NO;
}
return YES;
}
是的,就这么简单。
标签:问题 ui 方法 text 如何 return 简单 ld ie
原文地址:http://www.cnblogs.com/rainckoo/p/4107428.html