使用 CGPoint 作为数组
我想使用一个函数将很多点传递给另一个函数,但是 Xcode 线上出现错误: CGContextAddLines......
添加点填充了如下信息:
CGPoint addPoints[] = { CGPointMake(10,10), CGPointMake(10,10), 使用
-(void)constructPoints:(CGContextRef)上下文withPoints:(CGPoint)addPoints {
// do some context set attributes, color
// and
CGContextAddLines(上下文,addPoints,sizeof(addPoints)/ sizeof(addPoints [0]));
// 并绘制它
}
I want to use an function to pass a lot of points to another function, but the Xcode has errors on the line with: CGContextAddLines......
the add points is filled with information like:
CGPoint addPoints[] = {
CGPointMake(10,10),
CGPointMake(10,10),
}
the use the
-(void) constructPoints:(CGContextRef) context withPoints:(CGPoint) addPoints {
// do some context set attributes, color
// and
CGContextAddLines(context, addPoints, sizeof(addPoints)/sizeof(addPoints[0]));
// and draw-it
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试这样:
然后在您的通话中:
Try it like this:
Then on your call: