Проблема с цветом текста UIAlertAction на iPhone

#ios #objective-c #iphone #cocoa #ipod-touch Вопрос: UIAlertController* alert = [UIAlertController alertControllerWithTitle:@"foo" message:@"bar" preferredStyle:UIAlertControllerStyleAlert]; [alert addTextFieldWithConfigurationHandler:^(UITextField * _Nonnull textField){ textField.placeholder = @"placeholder"; textField.keyboardType = UIKeyboardTypeNumberPad; }]; UIAlertAction* cancelAction = [UIAlertAction actionWithTitle:@"Cancel"…

Продолжить чтениеПроблема с цветом текста UIAlertAction на iPhone