SDWebImage/Examples
mythodeia 2cfa5ccb88 Loading Indicator view with 2 lines of code
added support for UIActivityIndicatorView while the image is
downloaded, without adding extra ‘setImageWithUrl’ methods to the
UIImageView+WebCache category.
I used [this pull
request](https://github.com/mythodeia/UIActivityIndicator-for-SDWebImage
), original author is [JJSaccolo](https://github.com/JJSaccolo), and
modded it a bit to support loading indicator while the image is
downloading.

the usage is basically this right before the usual sd_setImage...
methods:
```
        // show activity indicator
        [cell.imageView setShowActivityIndicatorView:YES];
        // choose indicator style
        [cell.imageView
setIndicatorStyle:UIActivityIndicatorViewStyleGray];
```
2014-11-06 19:26:44 +02:00
..
CustomPathImages Custom image cache search paths 2013-06-07 17:57:28 +02:00
SDWebImage Demo Loading Indicator view with 2 lines of code 2014-11-06 19:26:44 +02:00
SDWebImage Demo.xcodeproj Moved all schemes to the workspace container plus created scheme for Tests 2014-11-04 12:45:04 +02:00
Default-568h@2x.png Fix example app 2012-11-05 20:38:31 +01:00