UIFont for Label不与尺寸设置配合使用

时间:2016-05-02 19:26:07

标签: ios objective-c uilabel uifont

我想制作一个游戏标题,但我似乎无法使字体更大。这就是我所拥有的。我选择不使用CGRectMake初始化程序设置,因为我只想设置x和y位置,而不是标签的大小(我认为它将由大小决定:下面的UIFont方法的部分)。 100.0与40.0大小没什么区别。

    UILabel *title = [[UILabel alloc] init];
    CGRect frame = title.frame;
    frame.origin.y = 30;
    frame.origin.x = 100;
    title.frame= frame;
    title.text = @"TWINSTONES";
    title.backgroundColor = [UIColor clearColor];
    title.font = [UIFont fontWithName:@"TWINSTONES" size:100.0];
    [title setTextColor:[UIColor colorWithWhite:0.9 alpha:1.0]];
    title.numberOfLines = 0;
    [title sizeToFit];
    [self.view addSubview:title];

0 个答案:

没有答案