たとえば、Objective-CはObjective-Cを呼び出すC関数を呼び出すことができますか?
(UIColor *) getUIColorWithRGB(int r, int g, int b) {
return [UIColor colorWithRed: r / 255.0 green: g / 255.0 blue: b / 255.0 alpha: 1];
}
@implementation UIColorCollection
+(UIColor *) lightCyanColor {
return getUIColorWithRGB(224, 255, 255);
}