Procházet zdrojové kódy

Updated the JSON response serialization code sample in the README.

Christian Noon před 10 roky
rodič
revize
af231fd15e
1 změnil soubory, kde provedl 2 přidání a 0 odebrání
  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)")
          }
 ```