Alertview代码:
UIAlertView *customAlert = [[UIAlertView alloc]initWithTitle:@"hi" message:nil delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[customAlert show];
答案 0 :(得分:0)
您无法自定义UIAlertView
,例如调整大小,更改字体属性等,因为 Apple 不允许任何人更改其UI控件。
一种解决方案是检查UIAlertView
的子视图并更改提醒的框架,但这是针对 Apple的NDA ,您的应用可能会被 Apple 拒绝并且不会保证在不同iOS
版本中工作的解决方案。
其他解决方案是使用UIView
,UILabel
和UIButton
对象创建自己的自定义提醒。但不建议这样做,因为您不太可能提供UIAlertView
提供的完整功能,控件和功能。