2015-03-03 76 views
-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)" 
} 

回答

0

Alamofire是下載圖像的簡單方法:

Alamofire.request(.GET, url).response() { request, response, data, error in 
    var image: UIImage? 
    if nil == error { 
     if let imageData = data as? NSData { 
      image = UIImage(data: imageData) 
     } 
    } 
    self.imageView.image = image 
} 
+0

我都用過,但我沒有得到又 – 2015-03-03 09:47:15

+0

有一個錯誤 - -unresloved identifier – 2015-03-03 09:54:19

+0

首先安裝迦太基或CocoaPods的Alamofire,然後在源文件的開頭添加'import Alamofire'。示例代碼中的'self.imageView'只是一個指定UIImage的示例。請用代碼中的其他任何東西替換'self.imageView'。 – 2015-03-03 10:45:37

相關問題