UIAlertController *alertController = [UIAlertController alertControllerWithTitle:nil message:@"hello" preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *ok = [UIAlertAction actionWithTitle:@"Ok" style:UIAlertActionStyleDefault handler:hander]
UIAlertAction *cancel = [UIAlertAction actionWithTitle:@"cancel" style:UIAlertActionStyleCancel handler:hander]
[alertController addAction:ok];
[alertController addAction:cancel];
Предупреждение показывает:
IOS 8,1 IPod Touch: [OK] [Отмена]
IOS 8.3 iPhone 6 Plus: [отмена] [OK]UIAlertController несовместимым положение кнопок
Почему расположение кнопок отличается от iPod и iPhone?
Итак, ваш вопрос: «Почему расположение кнопок отличается от iPod и iPhone»? –
Кнопка Cancel обычно располагается слева на Mac и iOS. Похоже на ошибку. – kelin
Да, это странно. –