系统默许弹出UIAlertView大小是多少

系统默认弹出UIAlertView大小是多少?
添加UIAlertView协议  UIAlertViewDelegate
在它的委托方法中可以调节alert大小,系统默认弹出UIAlertView宽度和高度分别是多少呢?
-(void)willPresentAlertView:(UIAlertView *)alertView
{
   alert.frame = CGRectMake(x, y, width, height);
}
------最佳解决方案--------------------
高度和你alert的内容有关
------其他解决方案--------------------
引用:
高度和你alert的内容有关
 一般简单的弹出一个警告呢?它的宽度高度
------其他解决方案--------------------
一般是280*177