8

UIAlertAction タイトルのフォント タイプを変更する方法を見つけようとしています。特定のキーに値を設定することで実行できると思います。たとえば、画像を設定するには、次のようにします。

action.setValue(image, forKey: "image")

利用可能なすべてのキーのリストはありますか? フォントの変更、タイトルの左右の配置などに使用するキーがわかりません...

4

2 に答える 2

-1

これを使用して、UIAlertAction タイトルの色を変更できます。

 UIAlertController *alertController = [UIAlertController
                                          alertControllerWithTitle:@"alert view"
                                          message:@"hello alert controller"
                                          preferredStyle:UIAlertControllerStyleAlert];

    alertController.view.tintColor = [UIColor greenColor];

    UIAlertAction *cancelAction = [UIAlertAction
                                   actionWithTitle:@"Cancel"
                                   style:UIAlertActionStyleCancel
                                   handler:^(UIAlertAction *action)
                                   {

                                   }];
    [alertController addAction:cancelAction];

    [self.navigationController presentViewController: alertController animated:YES completion:nil];

また

このリンクを確認してください-UIAlertControllerのカスタムフォント、サイズ、色

于 2015-11-19T10:07:01.390 に答える