gpt4 book ai didi

ios - 使用 SwiftyDropbox 将图片上传到 Dropbox

转载 作者:行者123 更新时间:2023-11-28 08:24:31 29 4
gpt4 key购买 nike

我正在尝试使用 SwiftyDropbox 和 Swift 3.0 将 UIImageView 中的图像上传到 Dropbox。当我按下按钮时,在第一个打印语句之后没有任何反应。我究竟做错了什么。

 import UIKit
import SwiftyDropbox

class ViewController: UIViewController {

let client = DropboxClientsManager.authorizedClient

@IBOutlet weak var myPhotoView: UIImageView!


@IBAction func logInAction(_ sender: Any) {
myButtonPressed()
}

@IBAction func sendPhotoAction(_ sender: Any) {
print("Button Pressed")

let fileData = UIImageJPEGRepresentation(myPhotoView.image!, 1.0)
//let compressedJPGImage = UIImage(data: fileData!)
let path = "/"
client?.files.upload(path: path, mode: .overwrite, autorename: true, clientModified: nil, mute: false, input: fileData!).response{ response, error in
if let _ = response { // to enable use: if let metadata = response {
print("OK")
} else {
print("Error at end")
}
}
}

override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}


func myButtonPressed(){
DropboxClientsManager.authorizeFromController(UIApplication.shared, controller: self, openURL: {(url:URL) -> Void in UIApplication.shared.openURL(url)
})
}


}

最佳答案

如果您的客户端为零,那么您还没有登录。请尝试登录并重新登录。否则它应该可以正常工作。

https://dropbox.github.io/SwiftyDropbox/api-docs/latest/index.html#configure-your-project

关于ios - 使用 SwiftyDropbox 将图片上传到 Dropbox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40458974/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com