gpt4 book ai didi

iphone - 为什么当我在 -drawRect :? 中绘制字符串时换行符不起作用

转载 作者:行者123 更新时间:2023-12-03 19:42:49 25 4
gpt4 key购买 nike

换行符在 UI​​View 的绘制矩形中不起作用?有人可以帮忙吗?

 - (void)drawRect:(CGRect)rect
{

CGContextRef context = UIGraphicsGetCurrentContext();
UIFont * f = [UIFont systemFontOfSize:20];
[[UIColor darkGrayColor] set];
CGRect b = [self bounds];

NSString * text = @"hi \nr u";

CGSize sz = CGSizeMake(150,200);

CGContextScaleCTM(context, b.size.width/sz.width, b.size.height/sz.height);
[text drawAtPoint:CGPointMake(0,0) withFont:f];

}

最佳答案

考虑使用 drawInRect:withFont: 而不是 drawAtPoint:withFont:,因为后者仅支持单行文本。

关于iphone - 为什么当我在 -drawRect :? 中绘制字符串时换行符不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2537101/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com