我是一个 Objective-C 菜鸟,搜索了高低还没有找到答案:
在我的 RubyMotion 项目中,我有一个名为 StatusGuage 的 UIView 子类,其中包含一个名为 drawLinearGradient 的方法,如下所示:
def drawLinearGradient(context, rect, startColor, endColor)
colorspace = CGColorSpaceCreateDeviceRGB()
locations = [0.0, 1.0]
# colors = NSArray.arrayWithObjects(startColor, endColor, nil)
# ptrColors = Pointer.new(:object, colors)
colors = [startColor, endColor, nil]
# CGGradientRef gradient = CGGradientCreateWithColors(colorSpace, (CFArrayRef) colors, locations);
CGGradientCreateWithColors(colorspace, colors, locations)
end
我想知道如何调用 CGGradientCreateWithColors。它显然需要一个 (CFArrayRef) 指针,但我无法弄清楚如何将它传递进去。我尝试过的迭代之一被注释掉了。
这是错误消息:
2012-05-11 16:57:36.331 HughesNetMeter[34906:17903]
*** Terminating app due to uncaught exception 'TypeError',
reason: 'status_guage.rb:43:in `drawLinearGradient:': expected
instance of Pointer, got `[0.0, 1.0]' (Array) (TypeError)
from status_guage.rb:13:in `drawRect:'
谢谢你的帮助。