I have the following method in a class named "Item". As you can see, getImage is a class/static method, but I want it to return an instance method from a DIFFERENT class (Item Instance). I don't see why it is not working?
+(UIImage*)getImage:(int)itemNumber {
UIImage *image = [ItemInstance getImage:itemNumber];
return image;
}
It tells me that the class method +getImage cannot be found in ItemInstance, but I am trying to call the instance method -getImage, not the class method +getImage