swift 在swift中创建http get请求

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift 在swift中创建http get请求相关的知识,希望对你有一定的参考价值。

//gets the json at some url and gets the any object
func getJSON(address:String) -> AnyObject {
    let url = NSURL(string: address)!
    let jsonData = NSData(contentsOfURL: url)!
    return try! NSJSONSerialization.JSONObjectWithData(jsonData, options: [])
}

以上是关于swift 在swift中创建http get请求的主要内容,如果未能解决你的问题,请参考以下文章

使用 Swift 向 Discord Webhook 发送 HTTP POST 请求会导致响应错误

无法理解如何在 iOS Swift 中创建具有多列的表

我们可以在 Swift 中创建具有非可选属性的类型擦除弱引用吗?

为啥 CFStringEncodings 在 Swift 中没有 UTF8?

swift 在Swift中创建一个委托

如何在 Swift 中创建范围?