作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
所以我有一个 UIAlertController
,其中添加了一个 UITextField
作为输入,但出于某种原因,文本字段似乎比预期的要小得多。知道为什么吗?
这是截图
这是代码
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"This is title"
message:@"This is message"
preferredStyle:UIAlertControllerStyleAlert];
[alert addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField) {
textField.keyboardType = UIKeyboardTypeNumberPad;
textField.placeholder = @"I am a placeholder";
}];
UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"Submit"
style:UIAlertActionStyleDefault
handler:nil];
[alert addAction:okAction];
[self presentViewController:alert animated:YES completion:nil];
谢谢!
最佳答案
这是一个非常有趣的错误。我们正在处理的项目有一个名为 Pixate Freestyle 的库,它使用 CSS 来设置应用程序元素的样式。它通过设置样式打破了文本字段。我们将其从项目中删除并对其进行了本地样式化。问题解决了。希望这对您有所帮助!
关于ios - UIAlertController 文本字段宽度比平时小得多,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32721782/
我是一名优秀的程序员,十分优秀!