代码很简单,但我的行总是2像素宽.
//Get the CGContext from this vIEwCGContextRef context = UIGraphicsGetCurrentContext();//Set the stroke (pen) colorCGContextSetstrokecolorWithcolor(context,[UIcolor bluecolor].CGcolor);//Set the wIDth of the pen markCGContextSetlinewidth(context,1);for (int i = 1; i <= sections - 1; i++){ UIBezIErPath *path = [UIBezIErPath bezIErPath]; [path movetoPoint:CGPointMake(0.0,i * kSectionHeight)]; CGContextMovetoPoint(context,0.0,i * kSectionHeight); //Start point CGContextAddlinetoPoint(context,self.frame.size.wIDth,i * kSectionHeight);}CGContextstrokePath(context);解决方法 没有点不会转换为像素. 如果您的线太粗,请更改该值. 总结
以上是内存溢出为你收集整理的ios – CGContext线宽全部内容,希望文章能够帮你解决ios – CGContext线宽所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)