This subclass of UIImageView allows you to display remote images asynchronously with nice fade in effect and activity indicator.
URLImageView *img = [[URLImageView alloc] initWithFrame:CGRectMake(0, 0, 200, 200)];
[img padding:2]; // add padding to borders
[img loadURL: [NSURL URLWithString:[...]];
[subview addSubview:img];
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request