4

使用以下帖子,我能够将 UILabel 添加到 UIToolbar,但是,它看起来很糟糕。任何人都知道如何让文本大小/颜色/阴影与 UINavigationController 的标题相匹配?

导航控制器

替代文本 http://www.codingwithoutcomments.com/uploads/Picture1.png

带有 UILabel

替代文本的 UIToolbar http://www.codingwithoutcomments.com/uploads/Picture2.png

我需要采取哪些步骤才能使它们匹配?

4

3 回答 3

7

您可能还想添加阴影?

itemLabel.shadowColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.5];
itemLabel.shadowOffset = CGSizeMake(0, -1.0);
于 2009-04-30T20:33:49.483 回答
3

显然问题是关于 iPhone,但如果有人想知道,这里是 iPad 的数字:

    titleLabel.font = [UIFont boldSystemFontOfSize:20.0];
    titleLabel.shadowOffset = CGSizeMake(0, 1);
    titleLabel.shadowColor = [UIColor colorWithWhite:1.f alpha:.5f];
    titleLabel.textColor = [UIColor colorWithRed:113.f/255.f green:120.f/255.f blue:127.f/255.f alpha:1.f];
    titleLabel.backgroundColor = [UIColor clearColor];
    titleLabel.text = @"Title";
于 2011-06-08T06:25:16.600 回答
0
UILabel * itemLabel = [[UILabel alloc] initWithFrame:rectArea];
itemLabel.text = @"Item";   
itemLabel.textColor = [UIColor whiteColor];
itemLabel.font = [UIFont boldSystemFontOfSize:22.0];
于 2009-04-20T18:51:00.153 回答