外観プロキシを使用してアプリのスタイルを設定していますが、[UIBarButtonItem の外観] に問題があります。一番上の UINavigationbar のボタンのみスタイルを設定したいのですが、以下のコードを実行すると、同じスタイルがキーボードの完了ボタンにも適用されます。
NSDictionary *btnAttributes = [NSDictionary dictionaryWithObjectsAndKeys:
[UIColor blackColor],
UITextAttributeTextColor,
[UIColor clearColor],
UITextAttributeTextShadowColor, nil];
[[UIBarButtonItem appearance] setTitleTextAttributes: btnAttributes
forState: UIControlStateNormal];
それで、私の質問は次のとおりです。外観プロキシを使用して、上部のナビゲーションバーのバーボタンのみをスタイルすることは可能ですか?