출처: Stanford Univ. CS193P (2010 Winter) Lecture 5
- (void)drawRect:(CGRect)rect {
- (void)drawRect:(CGRect)rect {
CGContextRef context = UIGraphicsGetCurrentContext();
[[UIColor grayColor] set];
UIRectFill ([self bounds]);
CGContextBeginPath (context);
CGContextMoveToPoint (context, 75, 10);
CGContextAddLineToPoint (context, 10, 150);
CGContextAddLineToPoint (context, 160, 150);
CGContextClosePath (context);
[[UIColor redColor] setFill];
[[UIColor blackColor] setStroke];
CGContextDrawPath (context, kCGPathFillStroke);
}
'개발 > Object C' 카테고리의 다른 글
Xcode 3 에서 블록을 한번에 comment 처리하는 방법 (0) | 2011.09.14 |
---|---|
Base SDK Missing Error 대처 방법 (2) | 2011.01.03 |
Xcode에서 Grouped/Ungrouped 의 의미 (0) | 2010.09.05 |
forward class and corresponding @interface may not exist warning (0) | 2010.08.23 |
UIScrollView에서 setDelegate를 사용했을 경우 warning (0) | 2010.08.21 |