如何获取 UIAlertController 的框架宽度?
Posted
技术标签:
【中文标题】如何获取 UIAlertController 的框架宽度?【英文标题】:How do I get the frame width of UIAlertController? 【发布时间】:2016-09-21 10:42:00 【问题描述】:我想获取 UIAlertController 框架的宽度,以便我可以指定 UIAlertController 附带的 UIPickerView 和 UIToolbar 的宽度。
我尝试使用以下语句来获取宽度。
alertPicker.view.frame.size.width
但是,宽度和viewController的一样:
self.view.frame.size.width
知道获取 UIAlertController 的宽度吗?非常感谢。
这是我的代码。
UIAlertController *alertPicker = [UIAlertController alertControllerWithTitle:nil message:@"\n\n\n\n\n\n\n\n\n\n\n\n" preferredStyle:UIAlertControllerStyleActionSheet];
CGRect pickerFrame = CGRectMake(8, 0, alertPicker.view.frame.size.width, self.view.frame.size.height/2);
UIPickerView *pickerView = [[UIPickerView alloc] initWithFrame:pickerFrame];
pickerView.showsSelectionIndicator = YES;
pickerView.dataSource = self;
pickerView.delegate = self;
UIToolbar* pickerToolbar = [[UIToolbar alloc] initWithFrame: CGRectMake(2, 0, alertPicker.view.frame.size.width, 44)];
UIBarButtonItem *doneBtn = [[UIBarButtonItem alloc] initWithTitle:@"Done" style:UIBarButtonItemStylePlain target:self action:@selector(doneBtnisClicked:)];
UIBarButtonItem *flexSpace = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
pickerToolbar.items = [[NSArray alloc] initWithObjects:flexSpace,doneBtn,nil];
[alertPicker.view addSubview:pickerToolbar];
[alertPicker.view addSubview:pickerView];
【问题讨论】:
【参考方案1】:没有直接获得UIAlertController
宽度的方法。
How to set height and width of a UIAlertController in ios 8
【讨论】:
以上是关于如何获取 UIAlertController 的框架宽度?的主要内容,如果未能解决你的问题,请参考以下文章
iOS UI 测试:如何获取 UIAlertController 的消息
注册通知时如何从存在的 UIAlertcontroller 获取 UIAlertAction
如何在Objective C中通过UIView获取UIAlertController?
在 UIAlertController 下获取最顶层的视图控制器