博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS绘制虚线
阅读量:4992 次
发布时间:2019-06-12

本文共 553 字,大约阅读时间需要 1 分钟。

-(void)drawRect:(CGRect)rect{    CGContextRef cont = UIGraphicsGetCurrentContext();    CGContextSetStrokeColorWithColor(cont, RGB(238, 234, 252).CGColor);    CGContextSetLineWidth(cont, 1);    CGFloat lengths[] = {
8,5}; CGContextSetLineDash(cont, 0, lengths, 2); //画虚线 CGContextBeginPath(cont); CGContextMoveToPoint(cont, 10*RatioWidth, rect.size.height - 1); //开始画线 CGContextAddLineToPoint(cont, rect.size.width-10*RatioWidth, rect.size.height - 1); CGContextStrokePath(cont);}

 

转载于:https://www.cnblogs.com/guchunli/p/6669549.html

你可能感兴趣的文章
word2vec:主要概念和流程
查看>>
Java - MyBites 逆向工程
查看>>
104. Maximum Depth of Binary Tree
查看>>
Python--变量作用域
查看>>
2017-2018-1 20155235 《信息安全系统设计基础》第九周学习总结
查看>>
!!和??
查看>>
matlab演奏卡农 Cripple Pachebel's Canon on Matlab
查看>>
apache的MPM机制-prefork
查看>>
js的一些实用的小技巧
查看>>
vue-cli中理不清的assetsSubDirectory 和 assetsPublicPath
查看>>
iOS的UILabel设置居上对齐,居中对齐,居下对齐
查看>>
最流行的android组件大全
查看>>
【Android自定义控件】支持多层嵌套RadioButton的RadioGroup
查看>>
Swift - 内存泄露原因(循环强引用)及解决办法
查看>>
AIDL-Android接口描述语言实现跨进程通讯
查看>>
剑指Offer - 九度1354 - 和为S的连续正数序列
查看>>
LeetCode - Anagrams
查看>>
用MFC时,如果程序崩溃,检查内存,然后注意GDI数量,在任务管理器里选项-查看列-GDI数量...
查看>>
angular(转)
查看>>
ansible简单现网配置
查看>>