Xml Parser委托不在Swift中调用

时间:2015-08-19 06:27:37

标签: ios iphone swift

我有一个提供xml响应的网络服务。我想解析并在表格中显示。但我的XMLParser代表未被召集。我是迅速的新人。请帮助任何帮助,

class ViewController: UIViewController,NSXMLParserDelegate,UITableViewDelegate {
        var element:String?
        var titles:NSMutableString?
        var link:NSMutableString?
        var tableData:NSMutableArray?
        var dict:NSMutableDictionary?
     @IBOutlet weak var table: UITableView?
        override func viewDidLoad() {
            super.viewDidLoad()
            dict = NSMutableDictionary()
            tableData = NSMutableArray()
            let url = NSURL(string: "hp?keytext=s")
            let theRequest = NSURLRequest(URL: url)

            NSURLConnection.sendAsynchronousRequest(theRequest, queue: nil, completionHandler: {(response: NSURLResponse!, data: NSData!, error: NSError!) -> Void in
                if data.length > 0 && error == nil {

                 //var   parser=NSXMLParser(data: data)
               var parser = NSXMLParser(contentsOfURL: url)
                    parser.delegate=self
                    parser.shouldResolveExternalEntities=false
                 parser.parse()
                }
            })
            // Do any additional setup after loading the view.




        }

        override func didReceiveMemoryWarning() {
            super.didReceiveMemoryWarning()
            // Dispose of any resources that can be recreated.
        }

        func tableView(tableView: UITableView?, numberOfRowsInSection section: Int) -> Int {

            // Return the number of rows in the section.
            return tableData!.count
        }

        func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!) -> UITableViewCell! {

                  var cell = tableView.dequeueReusableCellWithIdentifier("CELL") as? UITableViewCell


            if !(cell != nil) {
                       cell = UITableViewCell(style: UITableViewCellStyle.Value1, reuseIdentifier: "CELL")}



            var a:NSString
            var b:String

            a = tableData?.objectAtIndex(indexPath.row).objectForKey("title") as NSString
            b = tableData?.objectAtIndex(indexPath.row).objectForKey("city") as NSString

            cell?.textLabel?.text=a;
             cell?.detailTextLabel?.text=b




            return cell




        }

        func tableView(tableView:UITableView, heightForRowAtIndexPath indexPath:NSIndexPath)->CGFloat

        {

            return 78;

        }


        func parser(parser: NSXMLParser, didStartElement elementName: String, namespaceURI: String, qualifiedName qName: String, attributes attributeDict: [NSObject : AnyObject]) {
            element=elementName
            if element=="restaurant"
            {
                titles=NSMutableString()
                link=NSMutableString()
            }

        }

        func parser(parser: NSXMLParser, foundCharacters string: String) {
            if element=="title"
            {
                titles?.appendString(string)
            }
            else if element=="city"
            {
                link!.appendString(string)
            }
        }


        func parser(parser: NSXMLParser, didEndElement elementName: String, namespaceURI: String, qualifiedName qName: String) {
            if elementName == "restaurant"
            {
                dict?.setValue(titles, forKeyPath: "title")
                dict?.setValue(link, forKeyPath: "city")
                tableData?.addObject(dict!)

            }
        }

        func parserDidEndDocument(parser: NSXMLParser!){

            table?.reloadData()

        }

    }

2 个答案:

答案 0 :(得分:1)

您不需要在sendAsynchronousRequest方法中使用viewDidLoad,而不是使用此代码:

在所有函数之外声明parser变量。

然后在您的viewDidLoad方法中,使用以下代码替换您的代码:

override func viewDidLoad() {
    super.viewDidLoad()

    let url = NSURL(string: "http://images.apple.com/main/rss/hotnews/hotnews.rss")  //this is example URL

    parser = NSXMLParser(contentsOfURL: url)!
    parser.delegate = self
    parser.parse()

}

您的完整代码将是:

import UIKit

class ViewController: UIViewController,NSXMLParserDelegate,UITableViewDelegate, UITableViewDataSource {    //You will need UITableViewDataSource here.

    var parser : NSXMLParser = NSXMLParser()
    var element:String?
    var titles:NSMutableString?
    var link:NSMutableString?
    var tableData:NSMutableArray?
    var dict:NSMutableDictionary?

    @IBOutlet weak var table: UITableView?

    override func viewDidLoad() {
        super.viewDidLoad()

        let url = NSURL(string: "http://images.apple.com/main/rss/hotnews/hotnews.rss")

        parser = NSXMLParser(contentsOfURL: url)!
        parser.delegate = self
        parser.parse()

    }

    func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

        // Return the number of rows in the section.
        return tableData!.count
    }

    func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

        var cell = tableView.dequeueReusableCellWithIdentifier("CELL") as? UITableViewCell


        if !(cell != nil) {
            cell = UITableViewCell(style: UITableViewCellStyle.Value1, reuseIdentifier: "CELL")}
        var a:NSString
        var b:String

        a = tableData?.objectAtIndex(indexPath.row).objectForKey("title") as! NSString
        b = tableData?.objectAtIndex(indexPath.row).objectForKey("city") as! NSString as String

        cell?.textLabel?.text = a as String;
        cell?.detailTextLabel?.text = b

        return cell!

    }

    func tableView(tableView:UITableView, heightForRowAtIndexPath indexPath:NSIndexPath)->CGFloat

    {

        return 78;

    }

    func parser(parser: NSXMLParser, didStartElement elementName: String, namespaceURI: String?, qualifiedName qName: String?, attributes attributeDict: [NSObject : AnyObject]) {
        element=elementName
        if element=="restaurant"
        {
            titles=NSMutableString()
            link=NSMutableString()
        }

    }

    func parser(parser: NSXMLParser, foundCharacters string: String?) {
        if element=="title"
        {
            titles?.appendString(string!)
        }
        else if element=="city"
        {
            link!.appendString(string!)
        }
    }


    func parser(parser: NSXMLParser, didEndElement elementName: String, namespaceURI: String?, qualifiedName qName: String?) {
        if elementName == "restaurant"
        {
            dict?.setValue(titles, forKeyPath: "title")
            dict?.setValue(link, forKeyPath: "city")
            tableData?.addObject(dict!)

        }
    }

    func parserDidEndDocument(parser: NSXMLParser){

        table?.reloadData()

    }

}

我也更新了你的委托功能。

并检查您是否从URL获取数据。

我建议您先关注THIS教程,这将有助于您了解所有内容。

答案 1 :(得分:0)

您的网址首先是无效的网址,您只是将此字符串作为网址传递,并且#34; hp?keytext = s"。

第二件事就是当你的解析失败时它会调用这个方法。

func parser(parser: NSXMLParser, parseErrorOccurred parseError: NSError) {
        NSLog("failure error: %@", parseError)
    }