web-dev-qa-db-ja.com

UINavigationBarフォントプロパティを変更しますか?

UIViewControllerビューにUINavigationBarが追加されています。フォントのプロパティを変更したい。コントローラーではなくUINavigationBarを変更したいことに注意してください。 UINavigationControllerを使用するアプリでは、self.navigationItem.titleView = label;カスタムラベルを表示します。

UINavigationBarにカスタムタイトルを設定するにはどうすればよいですか?

追伸これを使用してタイトルテキストを設定しますself.navBar.topItem.title = @"Information";私のUINavigationBarの。

42
Jacob

IOS 5以降では、titleTextAttribute辞書(UInavigationコントローラークラスリファレンスの事前定義辞書)を使用して、タイトルテキストの色とナビゲーションバーのフォントを設定する必要があります。

[[UINavigationBar appearance] setTitleTextAttributes: 
    [NSDictionary dictionaryWithObjectsAndKeys: 
        [UIColor blackColor], NSForegroundColorAttributeName, 
           [UIFont fontWithName:@"ArialMT" size:16.0], NSFontAttributeName,nil]];

以下のチュートリアルは、UInavigationバー、UIsegmentedコントロール、UITabBarなどのUIElementのカスタマイズに最適なチュートリアルです。これはあなたに役立つかもしれません

http://www.raywenderlich.com/4344/user-interface-customization-in-ios-5

88
Sandeep

(これは、新しいiOS 5.0 Appearance APIを使用しては不可能です)。

編集:

iOS> = 5.0:

ナビゲーションバーのタイトルテキスト属性を設定します。

// Customize the title text for *all* UINavigationBars
NSDictionary *settings = @{
    UITextAttributeFont                 :  [UIFont fontWithName:@"YOURFONTNAME" size:20.0],
    UITextAttributeTextColor            :  [UIColor whiteColor],
    UITextAttributeTextShadowColor      :  [UIColor clearColor],
    UITextAttributeTextShadowOffset     :  [NSValue valueWithUIOffset:UIOffsetZero]};

[[UINavigationBar appearance] setTitleTextAttributes:settings];

iOS <5.0

UINavigationItemにはlabelなどのプロパティはなく、titleViewのみがあります。このタイトルビューとしてカスタムラベルを設定することによってのみ、フォントを設定できます。次のコードを使用できます:(提案どおり here

UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 200, 44)];
label.font = [UIFont fontWithName:@"YOURFONTNAME" size:20.0];
label.shadowColor = [UIColor clearColor];
label.textColor =[UIColor whiteColor];
label.text = self.title;  
self.navigationItem.titleView = label;      
[label release];
21
Tieme

これをアプリのデリゲートの

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

Ray Wenderlichから:

http://www.raywenderlich.com/4344/user-interface-customization-in-ios-5

[[UINavigationBar appearance] setTitleTextAttributes:
[NSDictionary dictionaryWithObjectsAndKeys:
[UIColor colorWithRed:255.0/255.0 green:255.0/255.0 blue:255.0/255.0 alpha:1.0], 
UITextAttributeTextColor, 
[UIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.8], 
UITextAttributeTextShadowColor, 
[NSValue valueWithUIOffset:UIOffsetMake(0, -1)], 
UITextAttributeTextShadowOffset, 
[UIFont fontWithName:@"STHeitiSC-Light" size:0.0], 
UITextAttributeFont, nil]];
7
stalinkay

IOS8 Swiftでは、次のコードを使用してフォントを設定します。

var navigationBarAppearance = UINavigationBar.appearance()
let font = UIFont(name: "Open Sans", size: 17)
if let font = font {
    navigationBarAppearance.titleTextAttributes = [NSFontAttributeName: font, NSForegroundColorAttributeName: UIColor.whiteColor()]
}
5

以下のリンクが役立ちます。これは、アプリケーション内のすべての場所で、現在のviewControllerのナビゲーションバーのフォントプロパティをどこに設定するかによって異なります

ここに素敵なチュートリアルがあります% http://www.appcoda.com/customize-navigation-status-bar-ios-7/?utm_campaign=iOS_Dev_Weekly_Issue_118&utm_medium=email&utm_source=iOS%2BDev%2BWeekly

基本的な考え方は、NSDictionaryインスタンスを作成し、目的のフォントやその他のプロパティで埋めることです。私はこの解決策を終えました:

[viewDidLoad]が次の行を配置した後、-viewDidLoadコントローラーメソッドで:

UIColor *color = [UIColor redColor];
NSShadow *shadow = [NSShadow new];
UIFont *font = [UIFont fontWithName:@"EnterYourFontName" size:20.0]
shadow.shadowColor = [UIColor greenColor];
shadow.shadowBlurRadius = 2;
shadow.shadowOffset = CGSizeMake(1.0f, 1.0f);

//fill this dictionary with text attributes
NSMutableDictionary *topBarTextAttributes = [NSMutableDictionary new];
    //ios 7
topBarTextAttributes[NSForegroundColorAttributeName] = color;
    //ios 6
topBarTextAttributes[UITextAttributeTextColor] = color;
    //ios 6
topBarTextAttributes[UITextAttributeTextShadowOffset] = [NSValue valueWithCGSize:shadow.shadowOffset];
topBarTextAttributes[UITextAttributeTextShadowColor] = shadow.shadowColor;
    //ios 7
topBarTextAttributes[NSShadowAttributeName] = shadow;
    //ios 6
topBarTextAttributes[UITextAttributeFont]   = font;
    //ios 7
topBarTextAttributes[NSFontAttributeName]   = font;

//for all the controllers uncomment this line
//    [[UINavigationBar appearance]setTitleTextAttributes:topBarTextAttributes];

//for current controller uncoment this line
//    self.navigationController.navigationBar.titleTextAttributes = topBarTextAttributes;
1

フォントをターゲットに追加することを忘れないでください。

フォントに関してできることはすべてやりましたが、実際にはフォントがターゲットのメンバーではなかったので、ロードできませんでした。

そのため、追加されたカスタムフォントでターゲットメンバーシップも確認してください。

0
soryngod