想问为什么从i=17开始,关于这里
-(void)drawMyRect{ CGContextRef context = UIGraphicsGetCurrentContext(); CGContextSetLineWidth(context, 1.0); for (int i = 17; i<stockData.count; i++) { StockClass *item = [stockData objectAtIndex:i]; float beginPrice = item.beginPrice; float endPrice = item.endPrice; [COLOR2 setStroke]; [COLOR2 setFill]; if (beginPrice > endPrice) { CGContextAddRect(context, [self getCurrentRect:i-17 beginPrice:beginPrice endPrice:endPrice]); CGContextDrawPath(context, kCGPathFillStroke); }else{ CGContextSaveGState(context); [COLOR1 setStroke]; [COLOR1 setFill]; CGContextAddRect(context, [self getCurrentRect:i-17 beginPrice:beginPrice endPrice:endPrice]); CGContextDrawPath(context, kCGPathFillStroke); CGContextRestoreGState(context); } } }
源自:图形绘制
7-5 K线图绘制1
0
收起
正在回答
1回答
这里主要是数据比较多,所以直接从17开始。你也可以不从17开始取值哦。
iOS入门:基础语法与常用控件
- 参与学习 1337 人
- 提交作业 712 份
- 解答问题 1878 个
很多人都在疑问没有基础该怎么学习iOS开发?不用担心,本路径采用游戏关卡式的教学模式,并且以经典OC与最新Swift双重结合的教学内容,帮助大家快速掌握两种iOS开发语言基础,去掉“零”标签。
了解课程
恭喜解决一个难题,获得1积分~
来为老师/同学的回答评分吧
0 星