gpt4 book ai didi

ios - 发现多个名为 'setCornerRadius:' 的方法具有不匹配的结果、参数类型或属性

转载 作者:行者123 更新时间:2023-11-28 21:18:23 26 4
gpt4 key购买 nike

当我尝试设置线段的角半径时出现此错误

[[self.daysSegment.subviews objectAtIndex:cnt] setCornerRadius:0];

Multiple methods named 'setCornerRadius:' found with mismatched result, parameter type or attributes

谢谢

最佳答案

试试这个-

[[(UIView*)[self.daysSegment.subviews objectAtIndex:cnt] layer] setCornerRadius:0];

编辑

我会建议你打破上面的代码。这将使调试变得更加容易。

UIView  *view  = [self.daysSegment.subviews objectAtIndex:cnt];
CALayer *layer = [view layer];
layer.cornerRadius = 0.0;

关于ios - 发现多个名为 'setCornerRadius:' 的方法具有不匹配的结果、参数类型或属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40741562/

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