码迷,mamicode.com
首页 > 其他好文 > 详细

让playground执行异步操作

时间:2015-07-06 10:17:12      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:ios   异步   swift   playground   

让playground执行异步操作

by 伍雪颖


import UIKit
import XCPlayground
XCPSetExecutionShouldContinueIndefinitely(continueIndefinitely: true)

let url = NSURL(string: "http://httpbin.org/get")

let getTask = NSURLSession.sharedSession().dataTaskWithURL(url!) {
    (data,response,error) ->
Void in
   
let dictionary: AnyObject? =
   
NSJSONSerialization.JSONObjectWithData(data, options: nil, error: nil)
   
println(dictionary)
}
getTask.resume()

版权声明:本文为博主原创文章,未经博主允许不得转载。

让playground执行异步操作

标签:ios   异步   swift   playground   

原文地址:http://blog.csdn.net/rainlesvio/article/details/46770431

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!