我需要画线条有些是虚弱的,其他的是连续的.我不知道哪些是虚线,哪些不是.当我画虚线时,我用这个:
CGContextSetLineDash(context,5,linedashPattern,2); // set dashed line
但是,如果我画一条虚线,那么下一个也都是虚线.是否有操作重置“虚线”状态,画一条连续线?
例如:
CGContextSetLineContinuous(context,......); // set continuous line
解决方法
CGContextSetLineDash(context,NULL,0);
B.t.w.我只能建议检查文档.绝对快于在SO上发布问题;)