gpt4 book ai didi

iphone - 从 UIViewController 绘制一条线

转载 作者:行者123 更新时间:2023-11-29 04:47:28 24 4
gpt4 key购买 nike

我有一个 UIViewController,它有一个 UIImageView。我想在 UIImageView 顶部画一条线。我知道为了做到这一点,我必须重写 UIView 中的drawRect。有替代方案吗?

最佳答案

像这样:

CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetStrokeColorWithColor(context, [UIColor redColor].CGColor);
CGContextSetLineWidth(context, 1.0f);
CGContextMoveToPoint(context, 0, 0);
CGContextAddLineToPoint(context, view.frame.size.width, view.frame.size.height);
CGContextStrokePath(context);

关于iphone - 从 UIViewController 绘制一条线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9402506/

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