将SearchBar添加到搜索A类

时间:2016-04-11 21:07:23

标签: swift uitableview uisearchbar

所以我想在我的tableView中添加一个SearchBar,这是一个RSS Feed,我已经按照许多教程进行操作,但没有一个可以工作,因为它无法搜索已经创建的自定义类。

我从这里使用了RSS Feed:https://github.com/PrashantMangukiya/SwiftRSSReader

它有一个RssRecord.swift,包含:

class RssRecord {

    var title: String
    var description: String
    var link: String
    var pubDate: String

    init(){
        self.title = ""
        self.description = ""
        self.link = ""
        self.pubDate = ""
    }

}

在主要的ListViewController中,这是我告诉每个单元格的内容:

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

    let cell = tableView.dequeueReusableCellWithIdentifier("rssCell", forIndexPath: indexPath) 
    let thisRecord : RssRecord  = self.rssRecordList[indexPath.row]
    cell.textLabel?.text = thisRecord.title
    cell.detailTextLabel?.text = thisRecord.pubDate

    return cell
}

我在搜索tableView时遇到问题,如果它是一个数组,如何搜索这种数组?

由于

0 个答案:

没有答案