2011-02-01 8 views
2

navigationItemに表示されるテキストの色やアルファを変更する方法はありますか?現在、その明るい白と私は(可能であれば)それほど明るくないので少し戻ってノックするのが好きです。どんな情報でも大歓迎です。navigationItemフォントの色/アルファを変更しますか?

- (void)loadView { 
    [[self navigationItem]setTitle:@"Location List"]; 
    ... 
    ... 

enter image description here

答えて

4

あなたが代わりにsetTitleViewを使用し、それにラベルを与える必要が - このような何か:

UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320, 30)]; 
titleLabel.textColor = [UIColor redColor]; 
titleLabel.backgroundColor = [UIColor clearColor]; 
titleLabel.text = @"My Title"; 
[self.navigationItem setTitleView:titleLabel]; 
+2

おそらく '[[UIC olor whiteColor] colorWithAlphaComponent:0.5f] 'しかし... –

+0

ありがとう、ありがとう。 – fuzzygoat

0
UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 320, 30)]; 
    titleLabel.textColor = [UIColor colorWithRed:0.0/255.0 green:77.0/255.0 blue:134.0/255.0 alpha:1.0]; 
    titleLabel.backgroundColor = [UIColor clearColor]; 
    titleLabel.text = @"Videos"; 
    titleLabel.textAlignment = NSTextAlignmentCenter; 
    titleLabel.font = [UIFont boldSystemFontOfSize:18]; 
    [self.navigationItem setTitleView:titleLabel]; 
    //VKJ 
関連する問題