美文网首页
iOS 好看的文字处理

iOS 好看的文字处理

作者: Zhen斌iOS | 来源:发表于2020-06-09 11:38 被阅读0次

以tableView中cell的textLabel为例子:

cell.backgroundColor = [UIColor scrollViewTexturedBackgroundColor];
// 设置文字的字体
cell.textLabel.font = [UIFont fontWithName: @"AmericanTypewriter" size: 100.0f];
// 设置文字颜色
cell.textLabel.textColor = [UIColor orangeColor];
// 设置文字的背景颜色
cell.textLabel.shadowColor = [UIColor whiteColor];
// 设置文字的显示位置
cell.textLabel.textAlignment = UITextAlignmentCenter;

希望对你有帮助!

相关文章

网友评论

      本文标题:iOS 好看的文字处理

      本文链接:https://www.haomeiwen.com/subject/cirstktx.html