UIAlertController 在 iOS 9.3 中太慢了

UIAlertController is too slow in iOS 9.3

UIAlertController 在 iOS 9.3 中执行任何按钮操作时速度太慢。不确定是 iOS 9.3 问题还是缺少正确配置的内容。

UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"My Alert"
                                                               message:@"This is an action sheet."
                                                        preferredStyle:UIAlertControllerStyleActionSheet];
UIAlertAction *firstAction = [UIAlertAction actionWithTitle:@"one"
                                                      style:UIAlertActionStyleDefault handler:^(UIAlertAction * action) {
                                                          NSLog(@"You pressed button one");
                                                      }];
UIAlertAction *secondAction = [UIAlertAction actionWithTitle:@"two"
                                                       style:UIAlertActionStyleDefault handler:^(UIAlertAction * action) {
                                                           NSLog(@"You pressed button two");
                                                       }];

在 iPhone 模拟器上,点击 sheet 按钮操作需要超过 10 秒才能在控制台打印日志。谁能告诉我如何在 iPhone 模拟器上禁用转换或提高速度。

在模拟器菜单中禁用 Debug/Slow 动画。