UILabel
NavigationItem の titleView の中央にプログラムで割り当てられたものを設定するのに問題があります。私はNSAlignmentをNSAlignmentCenterに設定しています。これがどのように見えるかのイメージです:
ご覧のとおり..適切な UIBarButtonItem を使用していませんが、テキストが中央に配置されないようにする必要はありませんか? のコードは次のviewDidLoad
とおりです。
//Set the title of navBar----------
UILabel *navTitleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320, 40)]; //0 0 320 10
navTitleLabel.backgroundColor = [UIColor clearColor];
navTitleLabel.textAlignment = NSTextAlignmentCenter;
navTitleLabel.textColor=[UIColor whiteColor];
navTitleLabel.text = @"IMG";
[navTitleLabel setFont: [UIFont fontWithName:@"BullettoKilla" size:16]];
self.navigationItem.titleView = navTitleLabel;
私は何を間違っていますか?