我想在用戶滾動到表格底部時加載更多數據並創建其他單元格。我正在使用JSON數據和MySql。當滾動到底部時,UITableView加載更多
func dataJsonFromURL(url:String)->NSArray
{
if let data = NSData(contentsOfURL: NSURL(string: url)!) {
return ((try! NSJSONSerialization.JSONObjectWithData(data, options: [])) as! NSArray)
}
else{
return data
}
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
{
let cell = tableView.dequeueReusableCellWithIdentifier("NCell", forIndexPath: indexPath) as! TableViewCell22
cell.backgroundColor = UIColor .clearColor()
let mindata = (data[indexPath.row] as! NSDictionary)
}
我要爲迅速 –
你可以使用Mix and Match,按照這篇文章https://developer.apple.com/librar Y/IOS /文檔/雨燕/概念/ BuildingCocoaApps/MixandMatch.html –
或者如果你正在使用的CocoaPods,你可以直接使用,而不混搭通過只需要導入您viewcontroller.swift文件的頂部聲明。 –