• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

iphone - 在 drawRect 方法中传递参数更改统计信息

[复制链接]
菜鸟教程小白 发表于 2022-12-12 13:07:26 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我在将参数传递给我的 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];


}

}

TransformBox.m

-(void) drawRectCGRect)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 但它从未被调用过?

提前致谢!



Best Answer-推荐答案


你不应该调用 [transform drawRect:CGRectMake(0, 0, 20, 20)];

drawRect:方法在 View 可见时自动调用,rect参数其实就是 View 的边框。

如果要将参数传递给要绘制的 View ,请将其作为属性传递给 TransformBox View 。

当你需要改变它时(在你添加到父 View 之后)你使用

[transform setSmallRect:CGRectMake(0, 0, 20, 20)];
[transform setNeedsDisplay];

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 setSmallRect:CGRectMake(0, 0, 20, 20)];
    [self.view addSubview:transform];
}

drawRect:会在 View 添加后被调用。

TransformBox.m

-(void) drawRectCGRect)rect{
    CGContextRef context = UIGraphicsGetCurrentContext();

    CGContextSetLineWidth(context, 2.0);

    CGContextSetStrokeColorWithColor(context, [UIColor blueColor].CGColor);

    CGRect rectangle = [self smallRect];
    CGContextAddRect(context,rectangle);

    CGContextStrokePath(context);
}

关于iphone - 在 drawRect 方法中传递参数更改统计信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17926328/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap