我创建了一个包含“customColor”代码的类,我想在我的代码中实现它,这样我就可以输入buttonOne.backgroundColor = [UIColor customColor]
.
在 .h 文件中,我有
+ (UIColor*) customColor;
在 .m 文件中,我有
+ (UIColor*) customColor {
return [UIColor colorWithRed:0.643 green:0.643 blue:0.643 alpha:1];
}
但是当我转到“ViewController.m”并输入
buttonOne.backgroundColor = [UIColor customColor]
我收到一条错误消息
选择器没有已知的类方法
customColor
我已经导入了 .h 文件。我错过了一步吗?