Просмотр исходного кода

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

Andy Ron 8 лет назад
Родитель
Сommit
8c97d610a1
1 измененных файлов с 1 добавлено и 1 удалено
  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
 
 ```swift
-let imageData = UIPNGRepresentation(image)!
+let imageData = UIImagePNGRepresentation(image)!
 
 Alamofire.upload(imageData, to: "https://httpbin.org/post").responseJSON { response in
     debugPrint(response)