0
有沒有辦法從ReferenceURL獲取MediaURL?我想將圖像上傳到需要filePath的S3服務器上。如何從UIImagePickerControllerReferenceURL獲取UIImagePickerControllerMediaURL?
在此先感謝。
有沒有辦法從ReferenceURL獲取MediaURL?我想將圖像上傳到需要filePath的S3服務器上。如何從UIImagePickerControllerReferenceURL獲取UIImagePickerControllerMediaURL?
在此先感謝。
從MediaURL
您可以獲得ReferenceURL
,您需要保存'UIImage in your
DocumentDirectory`,然後您可以獲取該路徑並將其上載到S3。
let imageName = "temp.png"
let documentDirectory = try! NSFileManager().URLForDirectory(.DocumentDirectory, inDomain: .UserDomainMask, appropriateForURL: nil, create: true)
let imgPathUrl: NSURL = documentDirectory.URLByAppendingPathComponent(imageName)
let data = UIImagePNGRepresentation(UIImagePickerControllerOriginalImage)
data!.writeToFile(imgPathUrl!.path!, atomically: true)
print("Path \(imgPathUrl!.path!)")
現在您可以從該路徑上傳!
我想從ReferenceURL MediaURL,反正謝謝:) – coreDeviOS
你不能! @coreDeviOS –