File tree 1 file changed +29
-0
lines changed
1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -60,3 +60,32 @@ let feed = try? JSONFeed(data: data)
60
60
let string = < some utf8 json string>
61
61
let feed = try ? JSONFeed (string : string)
62
62
```
63
+ ### Reading from a feed via URLSession
64
+
65
+ Using default configuration and URLSession
66
+ ``` swift
67
+ let reader = JSONFeedReader ()
68
+ reader.read (string : " https://jsonfeed.org/feed.json" ) { (feed, error) in
69
+ if let error = error {
70
+ // bad things happened
71
+ }
72
+
73
+ if let feed = feed {
74
+ // good things happened
75
+ }
76
+ }
77
+ ```
78
+
79
+ Using custom implemenation of URLSession (example: for unit testing)
80
+ ``` swift
81
+ let reader = JSONFeedReader (session : SomeCustomURLSession)
82
+ reader.read (string : " https://jsonfeed.org/feed.json" ) { (feed, error) in
83
+ if let error = error {
84
+ // bad things happened
85
+ }
86
+
87
+ if let feed = feed {
88
+ // good things happened
89
+ }
90
+ }
91
+ ```
You can’t perform that action at this time.
0 commit comments