我想使用一个函数将很多点传递给另一个函数,但是Xcode有错误就行了:CGContextAddLines......
添加点充满了如下信息:
CGPoint addPoints[] = { CGPointMake(10,10), CGPointMake(10,10), }
使用 -(void)constructPoints:(CGContextRef) 上下文 withPoints:(CGPoint) addPoints {
// do some context set attributes, color
// and
CGContextAddLines(context, addPoints, sizeof(addPoints)/sizeof(addPoints[0]));
// 并绘制它
}