作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我想允许用户输入多行文本。我正在使用 UIAlertController 这样做。以下是我使用的代码。
UIAlertController * alert= [UIAlertController
alertControllerWithTitle:@"Remarks"
message:@"Please enter the remarks:"
preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction* ok = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {
UITextField *email = alert.textFields.firstObject;
NSLog(@"%@",email.text);
if (![email.text isEqualToString:@""])
{
}
else
{
[self showMessage:@"Remark is mandatory" withTitle:@"Remarks!"];
}
}];
UIAlertAction* cancel = [UIAlertAction actionWithTitle:@"Cancel" style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {
[alert dismissViewControllerAnimated:YES completion:nil];
}];
[alert addAction:ok];
[alert addAction:cancel];
[alert addTextFieldWithConfigurationHandler:^(UITextField *textField) {
textField.placeholder = @"Enter the remarks";
}];
[self presentViewController:alert animated:YES completion:nil];
问题是,
最佳答案
使用自定义 iOS AlertView。这对我有帮助。
关于ios - 无法在 UIAlertController 中强加 TextView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37937039/
我想制作一个 ul li 菜单,我想将每个 li 元素放在前一个元素之上。 我不知道我是否可以用文字解释我的意思,所以我制作了一张显示所需效果的图像: 我如何使用纯 CSS 来做到这一点?是否可能,或
我是一名优秀的程序员,十分优秀!