使用Swift在Tableview中对JSON数据进行分组

时间:2015-05-21 12:54:25

标签: ios uitableview swift

我正在为iOS创建一个应用程序,它使用json从我的服务器获取数据并将其存储在tableview上;这没有问题,我的数据是简单的注释,一些注释链接在一起形成项目(我的数据库sql简单dependency_id),我的问题是:我如何按项目分组我的笔记,如联系人列表? (例如http://img.wonderhowto.com/img/13/66/63535060544981/0/siri-exploit-you-could-bypass-iphones-lock-screen-call-message-any-contact-ios-7-1-1.w654.jpg

这是用所有笔记填充表格的来源:

//
//  TableController.swift
//  uitableview_load_data_from_json

import UIKit

class TableController: UITableViewController {

var TableData:Array< String > = Array < String >()
var userid = NSUserDefaults.standardUserDefaults().stringForKey("userid")!

override func viewDidLoad() {
    super.viewDidLoad()
    get_data_from_url("http:/localhost/index.php/iOS_getNomenTasks?n=" + userid)
}

override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
    return 1
}
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return TableData.count
}

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCellWithIdentifier("cell", forIndexPath: indexPath) as UITableViewCell
    cell.textLabel?.text = TableData[indexPath.row]
    return cell
}


func get_data_from_url(url:String)
{
    let httpMethod = "GET"
    let timeout = 15
    let url = NSURL(string: url)
    let urlRequest = NSMutableURLRequest(URL: url!,
        cachePolicy: .ReloadIgnoringLocalAndRemoteCacheData,
        timeoutInterval: 15.0)
    let queue = NSOperationQueue()
    NSURLConnection.sendAsynchronousRequest(
        urlRequest,
        queue: queue,
        completionHandler: {(response: NSURLResponse!,
            data: NSData!,
            error: NSError!) in
            if data.length > 0 && error == nil{
                let json = NSString(data: data, encoding: NSASCIIStringEncoding)
                self.extract_json(json!)
            }else if data.length == 0 && error == nil{
                println("Nothing was downloaded")
            } else if error != nil{
                println("Error happened = \(error)")
            }
        }
    )
}

func extract_json(data:NSString)
{
    var parseError: NSError?
    let jsonData:NSData = data.dataUsingEncoding(NSASCIIStringEncoding)!
    let json: AnyObject? = NSJSONSerialization.JSONObjectWithData(jsonData, options: nil, error: &parseError)
    if (parseError == nil)
    {
        if let task_list = json as? NSArray
        {
            for (var i = 0; i < task_list.count ; i++ )
            {
                if let tasj_obj = task_list[i] as? NSDictionary
                {
                    if let task_id = tasj_obj["id"] as? String
                    {
                        if let task_name = tasj_obj["tk_title"] as? String
                        {
                            if let task_type = tasj_obj["tk_type"] as? String
                            {
                                TableData.append(task_name)
                            }
                        }
                    }
                }
            }
        }
    }
    do_table_refresh();
}


func do_table_refresh()
{
    dispatch_async(dispatch_get_main_queue(), {
        self.tableView.reloadData()
        return
    })
}
}

确定.. task_id是注释ID, task_name是注释名称, task_type是标识note是否为项目的值,如果task_type为0,则注释为简单注释,如果task_type为1,则注释为项目。

1 个答案:

答案 0 :(得分:1)

如果您创建了一个UITableViewController,则您具有以下功能:

override func numberOfSectionsInTableView(tableView: UITableView) -> Int

有了它,你有3个部分,包含2行:

var tab: [String] = ["section 1", "section 2", "section 3"]

var tabData: [AnyObject] = [["item1", "item2"],["item1", "item2"],["item1", "item2"]]

override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
     return tab.count
}

override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
     return self.dataTab[section].count
}

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
     var cell: UITableViewCell = UITableViewCell()
     return cell
}