传递“setBackgroundColor:”的参数 1来自不兼容的指针类型

发布于 2024-11-25 06:41:05 字数 430 浏览 0 评论 0原文

- (void)drawRect:(CGRect)rect {
    // Drawing code.

    // BackgroundColor
    CALayer *myLayer = [self layer];    
    [myLayer setBackgroundColor:[UIColor colorWithRed:0 green:0 blue:0 alpha:0.5].CGColor];
    ...
}

当我想为图层设置背景颜色时,出现警告。 但代码运行正常。

=================================================== =========

最佳答案是: #import

- (void)drawRect:(CGRect)rect {
    // Drawing code.

    // BackgroundColor
    CALayer *myLayer = [self layer];    
    [myLayer setBackgroundColor:[UIColor colorWithRed:0 green:0 blue:0 alpha:0.5].CGColor];
    ...
}

when I want to setBackgroundColor for the layer, the warning occurred.
But the code runs OK.

===========================================================

The Best Answer is :
#import <QuartzCore/QuartzCore.h>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

開玄 2024-12-02 06:41:05

如果您的模块中未包含 Quartz,则编译器不知道 CGColor 作为类型并发出警告。

#import 放入标头中,它应该会删除警告。

希望这有帮助,

戴夫

If you don't include Quartz in your module then the compiler does not know about CGColor as a type and issues the warning.

Put #import <QuartzCore/QuartzCore.h> in your header and it should remove the warning.

Hope this helps,

Dave

┈┾☆殇 2024-12-02 06:41:05

CALayerbackgroundColor 属性的类型为 CGColorRef,它是 CGColor 属性的返回类型UIColor,所以代码看起来很合理。

尝试这样做:

[myLayer setBackgroundColor:[[UIColor colorWithRed:0 green:0 blue:0 alpha:0.5] CGColor]];

The backgroundColor property of CALayer is of type CGColorRef which is the return type of the CGColor property of UIColor, so the code looks sound.

Try doing this instead:

[myLayer setBackgroundColor:[[UIColor colorWithRed:0 green:0 blue:0 alpha:0.5] CGColor]];
晌融 2024-12-02 06:41:05

从命令中删除 CGColor 转换并将其写为:

[myLayer setBackgroundColor:(id)[UIColor colorWithRed:0 green:0 blue:0 alpha:0.5].CGColor];

抱歉...尝试这个更新版本

Remove CGColor conversion from the command and write it as:

[myLayer setBackgroundColor:(id)[UIColor colorWithRed:0 green:0 blue:0 alpha:0.5].CGColor];

sorry...try this updated version

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文