今天发现有些人被表格所难住了,我的想法是用 DrawRect进行表格的绘制,那么问题来了,对于 DrawRect我感觉只有大神对其会比较了解,于是我就试着写下关于 DrawRect的简单用法,至于更深的,还需要话时间去研究,今天只带来其最基本的用法,供大家有所了解!
#import <UIKit/UIKit.h>
@interface OneView : UIView
@end
#import "OneView.h"
@implementation OneView
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect {
// Drawing code
[self drawLine];
}
#pragma mark - 画线
-(void)drawLine{
//第一步:获取上下文
//CGContextRef 用来保存图形信息.输出目标
CGContextRef context = UIGraphicsGetCurrentContext();
//第二步:画图形
//设置线的颜色
CGContextSetRGBStrokeColor(context, 255/255.0, 255/255.0, 255/255.0, 1);
//设置线的宽度
CGContextSetLineWidth(context, 13);