请问 swift 怎么在drawrect里面绘制文字?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了请问 swift 怎么在drawrect里面绘制文字?相关的知识,希望对你有一定的参考价值。

参考技术A - (void)drawRect:(CGRect)rect

NSString *string = @"haha嘿嘿";

NSMutableDictionary *dict = [NSMutableDictionary dictionary];

dict[NSForegroundColorAttributeName] = [UIColor redColor];

dict[NSFontAttributeName] = [UIFont systemFontOfSize:18];

[string drawInRect:rect withAttributes:dict];

以上是关于请问 swift 怎么在drawrect里面绘制文字?的主要内容,如果未能解决你的问题,请参考以下文章

iOS 编程中, 如何使用 Swift 和 CAGradientLayer 绘制这个矩形

swift怎么在点击按钮时重新调用uiview的drawrect函数

iOS 简单的使用drawRect 绘制

Swift drawRect 函数不会更新绘图

如何在UIView下绘制阴影

iOS的基本图形绘制