iOS Swift4.0 获取网络数据

Swift 网络数据请求与解析:

1、创建一个继承于NSObject的类URLService,在URLService中写Get请求。定义成一个方法方便调用

funcgetNewsData(channel:String,startNum:Int,completion:@escaping(Any,Bool)->(Void)) ->Void{

        // 使用Get请求数据

        // (1)网址字符串

        var urlStr = "网址字符串"

        // (2)转码

        urlStr = urlStr.addingPercentEncoding(withAllowedCharacters:.urlFragmentAllowed)!

        // (3)封装为URL对象

        varurl =URL(string: urlStr)

        // (4)封装为URLRequest对象

        letreq =URLRequest(url: url!, cachePolicy:.reloadIgnoringCacheData, timeoutInterval:5.0)

        // (5)URLSession请求网络数据

        lettask:URLSessionDataTask=URLSession.shared.dataTask(with: req) { (data, response, error)in

            // 如果发生错误

            iferror !=nil{

                // 参数闭包的调用

                completion("网络服务器错误",false)

                return

            }

            // json数据解析

            let jsonData = try? JSONSerialization.jsonObject(with: data!, options: JSONSerialization.ReadingOptions.allowFragments)

            // json数据解析失败,返回错误

            ifjsonData ==nil{

                completion("网络数据器错误",false)

                return

            }

            letstatus = (jsonDataas!NSDictionary).value(forKey:"status")as!String

            letmsg = (jsonDataas!NSDictionary).value(forKey:"msg")as!String

            ifInt(status)! !=0{

                completion(msg,false)

                return

            }

// 根据网址进行数据解析

//            letresult = (jsonDataas!NSDictionary).value(forKey:"result")as!NSDictionary

  //          letlist = result.value(forKey:"list")as!NSArray

            var newsArr:[NewsModel] = []

            for item in list{

                letdic = itemas!NSDictionary

                letoneNew =NewsModel()

// 根据Model类进行赋值

                oneNew.title= dic.value(forKey:"title")as!String

                newsArr.append(oneNew)

            }

            completion(newsArr,true)

}

        // (6)开启任务

        task.resume()

   }

2、创建模型Model类

在类中定义解析出网址中的字段

例:vartitle:String=""

3、在ViewControll

定义表格,对表格进行赋值,把解析出来的数据赋值给cell

var table:UITableView?

vartableDataArr:[NewsModel]?

创建表格

self.table=UITableView(frame:self.view.frame, style: .plain)

        table?.delegate=self

        table?.dataSource=self

        self.view.addSubview(table!)

// MARK:UITableViewDelegate

    functableView(_tableView:UITableView, numberOfRowsInSection section:Int) ->Int{

        ifletcount =tableDataArr?.count{

            returncount

        }

        return0

    }


    functableView(_tableView:UITableView, cellForRowAt indexPath:IndexPath) ->UITableViewCell{

        letidentifier ="cell"

        varcell = tableView.dequeueReusableCell(withIdentifier: identifier)

        ifcell ==nil{

            cell =UITableViewCell(style: .subtitle, reuseIdentifier: identifier)

// cell的内容自动换行

//            cell?.textLabel?.numberOfLines = 0;

//            cell?.detailTextLabel?.numberOfLines = 0;

// 根据模型当中的数据,进行赋值

            letoneNew =self.tableDataArr![indexPath.row]

            cell?.textLabel?.text= oneNew.title

        }

        returncell!

    }

// MARK:请求网络数据

    funcrequestNetWorkDataAndUpdateUI() ->Void{

        // 转动菊花

        UIApplication.shared.isNetworkActivityIndicatorVisible = true

        // 请求网络数据

        leturlService =URLService()

// 调用URLService中的Get方法

        urlService.getNewsData(channel:"头条", startNum:self.startNum) { (data, success) -> (Void)in

            // 先停止指示器

            DispatchQueue.main.async {

                // 停止菊花

                UIApplication.shared.isNetworkActivityIndicatorVisible = false

            }

            // 错误情况,提示

            if!success{

                DispatchQueue.main.async{

                   // 如果网络出错,给用户一个提示

               }

                return

            }

            // 正确情况,加载表格

            // 如果startNum是0,将第一页数据赋值给表格数据

            ifself.startNum==0{

                self.tableDataArr= dataas? [NewsModel]

            }else{  // 如果不是0,将得到的数据拼接到表格数组当中

                letarr = dataas? [NewsModel]

                self.tableDataArr?.append(contentsOf: arr!)


            }

            DispatchQueue.main.async {

// 回到主线程刷新表格

                self.table?.reloadData()

            }

        }

    }

你可能感兴趣的:(iOS Swift4.0 获取网络数据)