You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 19, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+10-48Lines changed: 10 additions & 48 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,16 +13,15 @@ A simple UIImageView subclass for dealing with http://gravatar.com images.
13
13
14
14
```ruby
15
15
platform :ios, '7.0'
16
-
pod "RFGravatarImageView", "~> 1.0"
16
+
pod "RFGravatarImageView", "~> 1.1"
17
17
```
18
18
19
19
### Installation without CocoaPods
20
20
21
21
Just drag the RFGravatarImageView folder into your project and import it. You'll also have to download SDWebImage, which you can grab here: [SDWebImage repository](https://github.com/rs/SDWebImage).
22
22
23
-
```
23
+
```obj-c
24
24
#import 'RFGravatarImageView.h'
25
-
// Don't worry about importing SDWebImage
26
25
```
27
26
28
27
## Use
@@ -31,57 +30,20 @@ RFGravatarImageView is pretty easy to use. See this example implementation (cop
See [RFGravatarImageView.h](RFGravatarImageView/RFGravatarImageView.h) to view each available method and the variables - I've commented on everything you need (I think). For more information on the Gravatar image requests, see [here](https://en.gravatar.com/site/implement/images).
43
44
44
45
Hope you enjoy it! Please Fork and send Pull Requests!
45
46
46
-
##Methods and Variables
47
-
48
-
```obj-c
49
-
// I suppose you could use an NSDictionary for this, but I was lazy - feel free to add.
0 commit comments