我想UITextField
在我的 iPhone 应用程序中放置临时文本。Android 具有在文本字段中显示临时文本的提示属性。我如何在 iPhone 开发中做同样的事情?
问问题
3216 次
2 回答
7
UITextFields 有一个占位符属性,可让您设置提示文本:
MyTextField.Placeholder = "Required";
于 2013-05-29T18:45:01.737 回答
1
有不同的方法来使用 UITextfield 的占位符,下面给出了一些好方法
CGRect frame = CGRectMake(0, 0, 160, 29);
UITextField *search= [[UITextField alloc] initWithFrame:frame];
search.borderStyle = UITextBorderStyleRoundedRect;
search.textColor = [UIColor blackColor];
search.font = [UIFont systemFontOfSize:17.0];
search.placeholder = @"Suchen";
search.backgroundColor = [UIColor clearColor];
search.autocorrectionType = UITextAutocorrectionTypeNo;
search.keyboardType = UIKeyboardTypeDefault;
search.returnKeyType = UIReturnKeySearch;
search.clearButtonMode = UITextFieldViewModeWhileEditing;
search.delegate = self;
我希望它对你有帮助。谢谢
于 2013-05-29T19:03:08.727 回答