gpt4 book ai didi

objective-c - 删除 UIColor CGColor - KVC 警告

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:17:44 28 4
gpt4 key购买 nike

如何去除[[UIColor grayColor] CGColor]愚蠢的警告?

[self setValue:
[[UIColor grayColor] CGColor]
forKeyPath:[NSString stringWithFormat:@"_View_%@%d.layer.borderColor",
i>=10?@"":@"0", i]];

Incompatible pointer types sending 'CGColorRef' (aka 'struct CGColor *') to parameter of type 'id'

谢谢。

最佳答案

将 CGColor 转换为 id 类型:

[self setValue:
(id)[[UIColor grayColor] CGColor]
forKeyPath:[NSString stringWithFormat:@"_View_%@%d.layer.borderColor",
i>=10?@"":@"0", i]];

关于objective-c - 删除 UIColor CGColor - KVC 警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13583644/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com