CGContext 的一些工具方法

/*
 *設置虛線
 *param context CGContext
 *param context CGContext
 *param lineDashLengths  如:  const CGFloat lineDashLengths[2] = {2., 50. }; 2 是沒接虛線的長度2 和間隔50
 *returns
 */

void setXuXian(CGContextRef context,const CGFloat lineDashLengths[],CGFloat width){
    CGContextSetLineWidth(context, width);
    CGContextSetLineDash(context, 0., lineDashLengths, 2);
}
相關文章
相關標籤/搜索