Guest User

Untitled

a guest
May 27th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. // This:
  2. NSMutableArray *ar = [[NSMutableArray alloc] initWithCapacity:0];
  3. for (NSString *imageString in [issue previewUrls]) {
  4. [ar addObject:[NSURL URLWithString:imageString]];
  5. }
  6. magImageView.images = ar;
  7. [ar release];
  8.  
  9. // Is equivalent to this:
  10. magImageView.images = [issue.previewUrls map:functionTS([NSURL classAsId], URLWithString:)];
Add Comment
Please, Sign In to add comment