我想在 UIView 中的图像视图(如链接图像..)之间画线。我用过
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetStrokeColorWithColor(context, [UIColor redColor].CGColor);
CGContextSetLineWidth(context, 2.0);
CGContextMoveToPoint(context, 0,0); //start at this point
CGContextAddLineToPoint(context, 20, 20); //draw to this point
CGContextStrokePath(context);
但是在这里,我的上下文是空的。我不知道是否必须导入任何框架或导入任何标题。任何建议或样品将不胜感激。
提前致谢。