我在Main.storyboard
中有一个条形按钮项,点击它时我添加了一些操作,我的代码审核者希望我将UIAlertAction
放在Main.storyboard
中,而不是将其添加到代码,我不知道它是否合适?如果有,有什么方法可以做到这一点?我找不到UIAlertAction
对象。
- (IBAction)openFileUIBarButtonItem:(UIBarButtonItem *)sender {
UIAlertController *alert = [UIAlertController alertControllerWithTitle:nil
message:nil
preferredStyle:UIAlertControllerStyleActionSheet];
UIAlertAction *pickFileButton = [UIAlertAction actionWithTitle:@"Pick A File"
//......
}
答案 0 :(得分:2)
不,您无法在UIAlertController
中添加UIAlertAction
和Main.storyboard
....只是尝试通过编程方式添加它,就像您上面所做的那样..