Browse Source

[PR #2244] Fixed up PNG representation issue in README sample code.

Andy Ron 8 years ago
parent
commit
8c97d610a1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      README.md

+ 1 - 1
README.md

@@ -736,7 +736,7 @@ When sending relatively small amounts of data to a server using JSON or URL enco
 #### Uploading Data
 #### Uploading Data
 
 
 ```swift
 ```swift
-let imageData = UIPNGRepresentation(image)!
+let imageData = UIImagePNGRepresentation(image)!
 
 
 Alamofire.upload(imageData, to: "https://httpbin.org/post").responseJSON { response in
 Alamofire.upload(imageData, to: "https://httpbin.org/post").responseJSON { response in
     debugPrint(response)
     debugPrint(response)