-1
我已經爲Swift語言創建了OSX按鈕。我希望該按鈕應該在我的Mac中下載圖像。 我應該使用什麼代碼來下載該圖像?如何使用swift語言在OS X中下載圖像
下面是我使用的代碼:
@IBAction func buttonPressed(sender: NSButton) {
buttonPresses+=1
theLabel.stringValue = "You've pressed the button \n \(buttonPresses) times!"
theButton.title = "Download\(buttonPresses)"
}
我都用過,但我沒有得到又 – 2015-03-03 09:47:15
有一個錯誤 - -unresloved identifier – 2015-03-03 09:54:19
首先安裝迦太基或CocoaPods的Alamofire,然後在源文件的開頭添加'import Alamofire'。示例代碼中的'self.imageView'只是一個指定UIImage的示例。請用代碼中的其他任何東西替換'self.imageView'。 – 2015-03-03 10:45:37