Parcourir la source

Updated the JSON response serialization code sample in the README.

Christian Noon il y a 10 ans
Parent
commit
af231fd15e
1 fichiers modifiés avec 2 ajouts et 0 suppressions
  1. 2 0
      README.md

+ 2 - 0
README.md

@@ -179,6 +179,8 @@ Alamofire.request(.GET, "http://httpbin.org/get")
          .responseJSON { _, _, result in
              print(result)
              debugPrint(result)
+             
+             print("Parsed JSON: \(result.value)")
          }
 ```