Alamofire
// 基本使用 ,网络请求数据并转换成字典
1.例:http://www.baidu.com/
2.字典参数
3.自定义字段,随意填
4.与3自定义字段相符
Alamofire.request(.POST, 1.你的URL字符串, parameters:2.你的参数字典).responseJSON { 3.(response) -> Void in
let j = 4.response.result.value as? NSDictionary // 转成字典
print(j?.valueForKey("msg") as! String)
}