iOS 好看的文字处理
2020-06-09 本文已影响0人
Zhen斌iOS
以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;
希望对你有帮助!