September 14, 2011 · 0 Comments
//bad solution.
UIImage *imagebg = [UIImage initWithData:i_data];
//good way.
UIImage *imagebg = [[UIImage alloc] initWithData:[[i_data copy] autorelease]];
By admin-powenko
You must be logged in to post a comment.