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.

Which call is correct ? Seems that both calls have same result.

UIImage *img = [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"image" ofType:@"png"]];

or

UIImage *img = [[UIImage alloc] imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"image" ofType:@"png"]];
share|improve this question

2 Answers

up vote 3 down vote accepted

First in correct, as imageWithContentsOfFile is a class convenience method(Class method).

share|improve this answer
2  
+1 I misread the second (which is not a smart thing to do) – Binyamin Sharet May 9 '12 at 8:02

The easiest way to initialize a UIImage is...

UIImage *img = [UIImage imageNamed: @"image.png"];
share|improve this answer
2  
UIImage imageNamed has memory issues, thus we should avoid it. – Shivan Raptor May 9 '12 at 7:56
this is not answer of question? – rishi May 9 '12 at 8:01
@rishi No, just because it compiles doesn't necessarily mean it works. – 0x7fffffff May 9 '12 at 8:03
Ok that's good to know – TDeBailleul May 9 '12 at 8:06
@rishi Fair enough. I was just trying to help OP achieve the same objective in an easier manner. – Jason Fuerstenberg May 9 '12 at 10:10

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.