IOS绘图——简单三角形_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > IOS绘图——简单三角形

IOS绘图——简单三角形

 2015/2/10 3:05:49  先秦苍狼  程序员俱乐部  我要评论(0)
  • 摘要:#import<UIKit/UIKit.h>@interfaceMyView:UIView@end#import"MyView.h"@implementationMyView-(instancetype)initWithFrame:(CGRect)frame{self=[superinitWithFrame:frame];if(self){//Initializationcode}returnself;}-(void)drawRect:(CGRect)rect
  • 标签:iOS

class="p1">#import <UIKit/UIKit.h>

 @interface MyView : UIView

@end

 

#import "MyView.h"

@implementation MyView

- (instancetype)initWithFrame:(CGRect)frame {

    self = [super initWithFrame:frame];

    if (self) {

        // Initialization code

    }

    return self;

}

 

- (void)drawRect:(CGRect)rect {

    

    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextMoveToPoint(context, 75, 10);

    CGContextAddLineToPoint(context, 10, 150);

    CGContextAddLineToPoint(context, 160, 150);

    

    

    CGContextClosePath(context);

    [[UIColor blackColor] setStroke];

    [[UIColor redColor] setFill];

    CGContextDrawPath(context, kCGPathFillStroke);

}

 

 

@end

上一篇: Working C# code for MySql5.5 Stored Procedures IN parameters 下一篇: 没有下一篇了!
发表评论
用户名: 匿名