字体设置

2015-12-12  本文已影响103人  月咏蝴蝶
NSShadow *shadow = [[NSShadow alloc] init];
shadow.shadowColor = [UIColor blackColor];
shadow.shadowOffset = CGSizeMake(0, 1);
showed.shadowRadius = 5.0f;

(x, y) x代表向右偏移量,y代表向下偏移量

[[UINavigationBar appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:
    [UIColor blackColor],
    NSForegroundColorAttributeName,
    [UIFont fontWithName:@"HeitiSC" size:19.0],
    NSFontAttributeName,
    shadow,                                        
    NSShadowAttributeName,nil]];

设置文字颜色 NSForegroundColorAttributeName
设置字体 NSFontAttributeName
偏移用于文本阴影和文字阴影颜色 NSShadowAttributeName

上一篇 下一篇

猜你喜欢

热点阅读