これらのフォント記述子を属性付き文字列で使用できました。ナビゲーション バーのタイトル (Apple Dev の古い DrillDownSave サンプル コード) でそれらを使用できるようにしたいと考えています。私はしようとしています:
AppDelegate.h
@property (nonatomic, retain) IBOutlet UINavigationController *navigationController;
@property(nonatomic, retain) NSDictionary *titleTextAttributes;
AppDelegate.m
@synthesize window, outlineData, navigationController, savedLocation, titleTextAttributes;
- (void)customizeAppearance
{
[[UINavigationBar appearance] setTitleTextAttributes:
NSDictionary *titleTextAttributes = @{NSForegroundColorAttributeName: [UIColor purpleColor],
NSTextEffectAttributeName : NSTextEffectLetterpressStyle,
NSKernAttributeName : @4,
;
}
「予期しないインターフェイス名 'NSDictionary': 予期される式」と「予期される式」が表示されます (最後のセミコロンに関係しているようです)。