我在警报视图中使用了日期选择器。由于警报视图有默认的高度和宽度,我想改变它...任何人都知道该怎么办?请传达..!
答案 0 :(得分:0)
用适当的值替换CGRectMake
个参数。
UIAlertView *alertView = [[UIAlertView alloc]
initWithFrame:CGRectMake(5, 20, 320, 400)];
您也可以继承UIAlertView
。
答案 1 :(得分:0)
您无法干净地调整UIAlertView的大小。
您可以在 UIAlertView .frame
之后更改-show
,但按钮将被错误放置。
为什么不使用UIPopoverController,因为你的目标是iPad?