For example, can Objective-C call a C function, which calls Objective-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);
}