下文主要給大家帶來swift下如何實現網絡音樂下載與播放,希望這些文字能夠帶給大家實際用處,這也是我編輯swift下如何實現網絡音樂下載與播放這篇文章的主要目的。好了,廢話不多說,大家直接看下文吧。
在北流等地區,都構建了全面的區域性戰略布局,加強發展的系統性、市場前瞻性、產品創新能力,以專注、極致的服務理念,為客戶提供網站設計制作、成都做網站 網站設計制作按需網站設計,公司網站建設,企業網站建設,高端網站設計,全網整合營銷推廣,成都外貿網站制作,北流網站建設費用合理。
import UIKit
import AVFoundation
class ViewController:UIViewController {
var player=AVAudioPlayer() //========================創建音樂播放器
override func viewDidLoad() {
super.viewDidLoad()
self.onSearch("http://www.douban.com/j/app/radio/channels")//======================================================================================加載豆瓣的頻道例子
self.downloadsong("http://music.baidu.com/data/music/file?link=http://yinyueshiting.baidu.com/data2/music/122112390/1201250291408075261128.mp3?xcode=709b8be58036f8a3bd0759b78c6d19683f8882ee658cd7de&song_id=120125029")//====================================================================可以通過字符串拼接得到不同的的id播放不同的歌
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
}
func playsong(data:NSData)//音樂播放器播放
{
player=AVAudioPlayer(data: data, error:nil)
player.prepareToPlay()
print("xiaziawanle")
player.play()
}
func downloadsong(url:String)//==========================下載歌曲的方法
{
var nsUrl:NSURL=NSURL(string:url)
var request:NSURLRequest=NSURLRequest(URL:nsUrl)
//后面是一個閉包方法
NSURLConnection.sendAsynchronousRequest(request, queue:NSOperationQueue.mainQueue(), completionHandler:
{(response:NSURLResponse!,data:NSData!,error:NSError!)->Voidin
var httpResponse=response as NSHTTPURLResponse
if (true)
{
self.playsong(data)
}
})
}
func onSearch(url:String)//=======================加載頻道信息的方法
{
var nsUrl:NSURL=NSURL(string:url)
var request:NSURLRequest=NSURLRequest(URL:nsUrl)
NSURLConnection.sendAsynchronousRequest(request, queue:NSOperationQueue.mainQueue(), completionHandler:
{(response:NSURLResponse!,data:NSData!,error:NSError!)->Voidin
var jsonResult:NSDictionary =NSJSONSerialization.JSONObjectWithData(data, options:NSJSONReadingOptions.MutableContainers, error:nil) as NSDictionary
//========================我的小實驗==============================================用于觀察字典結構
print(jsonResult["channels"].objectAtIndex(1) )//=============可以用這個觀察不同字典的guil
var obj:AnyObject=jsonResult["channels"].objectAtIndex(1)as AnyObject //
print(obj.objectForKey("name"))
var airports: Dictionary<String,String> = ["TYO":"Tokyo", "DUB":"Du,blin"]
print(airports)
//=====================================================
對于以上關于swift下如何實現網絡音樂下載與播放,大家是不是覺得非常有幫助。如果需要了解更多內容,請繼續關注我們的行業資訊,相信你會喜歡上這些內容的。
分享題目:swift下如何實現網絡音樂下載與播放
標題URL:http://vcdvsql.cn/article18/gjgggp.html
成都網站建設公司_創新互聯,為您提供外貿建站、品牌網站制作、企業建站、網站制作、營銷型網站建設、用戶體驗
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯