Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

2 Answers

up vote 2 down vote accepted

To call an instance method, you have to have an instance:

+ (UIImage*)getImage:(int)itemNumber {
    ItemInstance *anInstance = [[ItemInstance alloc] init];

    UIImage *image = [anInstance getImage:itemNumber];

    // If you are using ARC, delete this line:
    [anInstance release];

    return image;
}
share|improve this answer
Wow. I can't believe I did that... Stupid mistake. Thank you so much. – William LeGate Jun 4 '12 at 15:41

Use below code:

+(UIImage*)getImage:(int)itemNumber {
     ItemInstance *obj = [[[ItemInstance alloc]init] autorelease];
     UIImage *image = [obj getImage:itemNumber];
     return image;
}
share|improve this answer
Thanks for the help. The other guy provided a slightly more detailed answer, but yours was right too and I appreciate it. – William LeGate Jun 4 '12 at 15:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.