0

AdobeUXImageEditorViewController を起動すると、rightBarButtonItem「Done」の文字色が常に青色になりますので、添付画像をご確認ください。テキストの色を白に変更するにはどうすればよいですか? 色を設定しようとした方法については、次のコードを確認してください。

editorViewController = AdobeUXImageEditorViewController(image: image)
editorViewController!.delegate = self
presentViewController(editorViewController!, animated: true) {
    [weak self] in
    guard let strongSelf = self else {return}
    strongSelf.editorViewController!.navigationItem.rightBarButtonItem!.tintColor = UIColor.whiteColor()
            }

電話のスクリーンショット

宜しくお願いします。

4

1 に答える 1

0

私は解決策を見つけました.ImageSDKCostomizerによって画像SDKの色をカスタマイズできます.これは、画像SDKと一緒にリリースされるMAC上のアプリケーションです.

ここに画像の説明を入力

于 2016-10-05T08:56:36.620 に答える