我在将参数传递给我的 drawRect 方法时遇到了问题。它改变了我在方法中给定的参数。
当我直接在drawRect中设置矩形框时,它工作正常,所以传递参数一定有问题。
例如它改变了所以我的代码是这样的。
ServiceAppViewController.m
-(void) initTransformBoxes{
TransformBox *transform = [[TransformBox alloc] initWithFrame:CGRectMake(20, _transformArrowView.frame.origin.y+65, _transformArrowView.frame.size.width,120)];
[transform setBackgroundColor:[UIColor grayColor]];
[transform drawRect:CGRectMake(0, 0, 20, 20)];
[self.view addSubview:transform];
}
}
变换框.m
-(void) drawRect:(CGRect)rect{
CGContextRef context = UIGraphicsGetCurrentContext();
CGContextSetLineWidth(context, 2.0);
CGContextSetStrokeColorWithColor(context, [UIColor blueColor].CGColor);
//but when I do it hard wired it works?
CGRect rectangle = CGRectMake(0, 0, 20, 20);
CGContextAddRect(context,rectangle);
//instead of this
// CGContextAddRect(context,rect);
CGContextStrokePath(context);
}
另一个问题是,我是否可以制作一个静态的 drawRect 方法?我试图覆盖 .h 文件中的 drawRect 但它从未被调用过?
提前致谢!