如何在ipad中动态增加UIAlertView大小?

时间:2014-12-15 13:11:37

标签: ios uialertview

Alertview代码:

UIAlertView  *customAlert = [[UIAlertView alloc]initWithTitle:@"hi" message:nil delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[customAlert show];

1 个答案:

答案 0 :(得分:0)

您无法自定义UIAlertView,例如调整大小,更改字体属性等,因为 Apple 不允许任何人更改其UI控件。

一种解决方案是检查UIAlertView的子视图并更改提醒的框架,但这是针对 Apple的NDA ,您的应用可能会被 Apple 拒绝并且不会保证在不同iOS版本中工作的解决方案。

其他解决方案是使用UIViewUILabelUIButton对象创建自己的自定义提醒。但不建议这样做,因为您不太可能提供UIAlertView提供的完整功能,控件和功能。