gpt4 book ai didi

ios - CoreGraphics 和上下文中的旋转和渐变

转载 作者:行者123 更新时间:2023-11-28 09:17:39 26 4
gpt4 key购买 nike

我肯定遗漏了 Core Graphics 上下文的某些部分,无法自行清除。这是我在 Xcode Playground 中的代码

import UIKit
class MyView08 : UIView {

override func drawRect(rect: CGRect) {
let cornerRaduis : CGFloat = 20
let pathRect = CGRectInset(self.bounds, 20, 20)
let rectanglePath = UIBezierPath(roundedRect: pathRect, cornerRadius: cornerRaduis)
var context = UIGraphicsGetCurrentContext()
CGContextSaveGState(context)
rotate(rectanglePath, context: context)
CGContextRestoreGState(context)

context = UIGraphicsGetCurrentContext()
CGContextSaveGState(context)
// drawGrad(rectanglePath, context: context)
CGContextRestoreGState(context)
}

func rotate(rectanglePath : UIBezierPath, context : CGContext) {
let rotation = CGAffineTransformMakeRotation(CGFloat(M_PI) / 4.0)
CGContextConcatCTM(context, rotation)
UIColor.greenColor().setFill()
rectanglePath.fill()

}

func drawGrad (rectanglePath : UIBezierPath, context : CGContext) {
let startColor = UIColor.redColor()
let endColor = UIColor.greenColor()
let gradientColors : CFArray = [startColor.CGColor, endColor.CGColor]
let gradientLocations : [CGFloat] = [0.0, 1.0]
let colorSpace = CGColorSpaceCreateDeviceRGB()
let gradient = CGGradientCreateWithColors(colorSpace, gradientColors, gradientLocations)
let topPoint = CGPointMake(self.bounds.size.width / 2, 20)
let bottomPoint = CGPointMake(self.bounds.size.width / 2, self.bounds.size.height - 20)

rectanglePath.addClip()
CGContextDrawLinearGradient(context, gradient, bottomPoint, topPoint, 0)
}
}

let myViewRect = CGRect(x: 0, y: 0, width: 300, height: 300)
let myView = MyView08(frame: myViewRect)

如果我取消注释这一行

drawGrad(rectanglePath, context: context)

一切都变糟了,Xcode 尝试执行代码将近 2000 次,然后失败了。我正在尝试旋转矩形并绘制渐变。

最佳答案

您正在经历无限递归。我不知道为什么,但这与您的测试程序有关。问题在于您的测试方式 - 而不是您的代码。 不要在 Playground 上测试这种代码。 Playground 不是现实。

(我可以概括地说,永远不要使用 Playground 。它们是魔鬼的杰作。但我不会。哎呀,我大声说了吗?)

无论如何,我将您的代码复制并粘贴到一个新的应用程序项目中(并且我取消了 drawGrad 行的注释),它运行得很好,没有您描述的那种递归问题。

请注意,您需要将 View 放入界面中才能执行任何操作。为此,我添加了这一行:

    self.view.addSubview(myView)

除此之外,我的代码与您的代码相同,没有问题。

关于ios - CoreGraphics 和上下文中的旋转和渐变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26701661/

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