1

これが変更可能かどうかはわかりませんが、カスタムナビゲーションコントローラーのタイトルにわずかな影が付いていることに気づきました。

写真: http: //imgur.com/60XjLWE

テキストがぼやけて見えるので、ちょっと面倒です。

これは私が使用しているコードです:[[UINavigationBar appearance] setTitleTextAttributes: [NSDictionary dictionaryWithObjectsAndKeys: [UIColor colorWithRed:52.0/255.0 green:54.0/255.0 blue:61.0/255.0 alpha:1.0],UITextAttributeTextColor, [UIFont fontWithName:@"Helvetica Neue-Bold" size:0.0],UITextAttributeFont, nil]];

タイトルの影を取り除く方法はありますか?

4

2 に答える 2

-2

これを AppDelegate に配置します

[[UINavigationBar appearance]setShadowImage:[[UIImage alloc] init]];
于 2013-03-18T10:21:01.167 に答える