石英2d试图重绘三角形

问题描述

| 我正在开发iPhone应用程序。 我有以下课程:
#import \"Triangulo.h\"


@implementation Triangulo

@synthesize minusValue;


- (id)initWithFrame:(CGRect)frame {
    if ((self = [super initWithFrame:frame])) {
        // Initialization code
    }
    return self;
}

// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect {
    CGSize size = rect.size;
    CGPoint origin = {10.0f,size.height - 10.0f};
    [self drawLineAtOrigin:origin withLength:size.width - 10.0f];

    CGPoint origin2 = {10.0f,size.height - 20.0f};
    CGSize size2 = {size.width - minusValue,20.0f};
    [self drawTriangleAtOrigin:origin2 withSize: size2 inRect: rect];
}

- (void)drawLineAtOrigin:(CGPoint)origin withLength:(float)length {
    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextSetLineWidth(context,2.0);
    CGContextSetStrokeColorWithColor(context,[UIColor blackColor].CGColor);

    CGContextMoveToPoint(context,origin.x,origin.y);
    CGContextAddLineToPoint(context,length,origin.y);
    CGContextStrokePath(context);
}

- (void)drawTriangleAtOrigin:(CGPoint)origin withSize:(CGSize)size inRect:(CGRect)rect {
    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextClearRect(UIGraphicsGetCurrentContext(),rect);

    CGContextSetLineWidth(context,[UIColor redColor].CGColor);
    CGContextSetFillColorWithColor(context,[UIColor redColor].CGColor);

    CGContextMoveToPoint(context,size.width,origin.y - size.height);
    CGContextAddLineToPoint(context,origin.y);
    CGContextFillPath(context);
    CGContextStrokePath(context);

}

- (void)dealloc {
    [super dealloc];
}


@end
此UIView是UIViewController.view的一部分。我将UIViewController.h添加为:
IBOutlet Triangulo *triangulo;

...

@property (nonatomic,retain) IBOutlet Triangulo *triangulo;
在UIViewController上,我有一个修改Triangulo的按钮:
- (IBAction)btnDrawTriangleClicked:(id)sender {

    triangulo.minusValue += 10.0f;

    CGRect rect = CGRectMake(0,280,50);

    [triangulo drawRect: rect];
}
但是我什么也画不出来,因为ѭ3总是为零。 有什么建议吗?     

解决方法

        将此代码添加到您的
Triangulo
类中:
- (void)setMinusValue:(double)aMinusValue {
    minusValue = aMinusValue;
    [self setNeedsDisplay];
}
然后将“ 6”方法转换为以下内容:
- (IBAction)btnDrawTriangleClicked:(id)sender {
    triangulo.minusValue += 10.0f;
}
现在,当您更改
minusValue
时,
Triangulo
会自动将其自身标记为需要重新显示。 (有关更多信息,请参见查看绘图周期)。正如Deepak所说,您永远不会自己叫ѭ10(除非您本身在
drawRect:
方法之内,而您叫
[super drawRect:frame];
)。系统会自动调用
drawRect:
方法,并且始终确保事先设置了有效的
CGGraphicsContext
。由于您是直接调用它,因此准备工作尚未完成,因此ѭ15通常返回ѭ16。     ,        切勿直接致电ѭ10。每当您想重绘视图时,都应致电
setNeedsDisplay
setNeedsDisplayInRect:
。传递给
drawRect:
rect
不是传递的随机值。它告诉您视图边界中需要重绘的部分。     

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...