我目前在我的应用程序中开发了书签功能。该功能的流程是从“新闻”列表屏幕开始的,用户选择阅读新闻,然后在WebView中将包含一个书签按钮。按下书签按钮后,新闻将存储在Realm中,然后显示在Bookmark ViewController中。但是,当我推入BookmarkVc时,应用程序崩溃并发生以下异常:

ios - 域数组索引超出范围-LMLPHP

我认为问题来自ArticleList,即使我添加了更多元素,它也始终只包含1个元素。因此,它导致索引超出范围问题:

ios - 域数组索引超出范围-LMLPHP

这是我的webViewVC和书签按钮操作的代码:

import UIKit
import Realm
import RealmSwift

class WebViewVC: UIViewController {

@IBOutlet weak var webView: UIWebView!
var ulr:String?
let articleList = ArticleList()
var article:NewsArticle?
var list : Results<ArticleList>!
var searchBar:UISearchBar = UISearchBar(frame: CGRect(x: 0, y: 0, width:
250, height: 20))

func drawNavBarUI(navigationItem:UINavigationItem) {
 let bookmarkBtn = UIButton(type: .custom)
 bookmarkBtn.setImage(UIImage(named: "bookmark"), for: .normal)
 bookmarkBtn.frame = CGRect(x: 0, y: 0, width: 30, height: 30)
 let item1 = UIBarButtonItem(image: #imageLiteral(resourceName: "favortie"), style: .done, target: self, action: #selector(saveFavoriteArticle))
    navigationItem.setRightBarButtonItems([item1,UIBarButtonItem(customView:searchBar)], animated: true)
}

func saveFavoriteArticle() {
    articleList.articles.append(article!)
    try! realm.write {
        realm.add(articleList)
    }
    print(articleList)
}

override func viewDidLoad() {
    super.viewDidLoad()
    webView.loadHTMLString(ulr!, baseURL: nil)
    drawNavBarUI(navigationItem: self.navigationItem)
}


对于BookmarkVC:

import UIKit
import RealmSwift

class BookmarksVC: UIViewController,UITableViewDelegate,UITableViewDataSource {

var list : Results<ArticleList> {
    get {
        return realm.objects(ArticleList.self)
    }
}

@IBOutlet weak var tableView: UITableView!
override func viewDidLoad() {
    super.viewDidLoad()
    tableView.register(UINib(nibName: "BookmarkCell", bundle: nil), forCellReuseIdentifier: "bookmarkCell")
    tableView.delegate = self
    tableView.dataSource = self
    self.tableView.reloadData()
}


func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
    return list.count
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell{
    let dict = list[indexPath.row]
    let cell = tableView.dequeueReusableCell(withIdentifier: "bookmarkCell", for: indexPath) as! BookmarkCell
    cell.titleLabel.text = dict.articles[indexPath.row].title
    return cell

}


这是我第一次使用Realm并尝试了一段时间,但仍然没有任何效果。因此,请任何人可以帮助我解决该问题。非常感谢你。

最佳答案

下标获取其dict.articles对象时,indexPath.row列表似乎为空。

09-28 13:16