无法使用从Mac Apple Store下载的Realm Browser 2.1.6向域数据库添加新记录

时间:2017-03-21 07:29:28

标签: ios realm persistence xcode8.2

我刚刚使用Realm数据库构建了一个简单的Todo应用程序。我使用从Mac Apple Store下载的Realm Browser 2.1.6来保存数据。通过使用Realm Browser,我可以正常编辑现有记录的值并在Todo App屏幕上显示,但是(Command +)添加的新记录无法在模拟器的屏幕上显示。我正在使用Xcode 8.2和swift 3。 我错过了什么或者这是一个错误吗?

感谢您的工作。

我最诚挚的问候,

1 个答案:

答案 0 :(得分:0)

如果您添加到领域浏览器中的那些新对象肯定存在(即,您可以关闭Realm文件并重新打开它,并且它们仍然存在),那么它听起来像你需要在应用中添加通知块,以检测领域浏览器何时更改数据并触发UI更新。

如果您将这些记录显示为表格或集合视图,则可以使用Realm's collection change notifications来检测添加新对象的时间。

class ViewController: UITableViewController {
  var notificationToken: NotificationToken? = nil

  override func viewDidLoad() {
    super.viewDidLoad()
    let realm = try! Realm()
    let results = realm.objects(Person.self).filter("age > 5")

    // Observe Results Notifications
    notificationToken = results.addNotificationBlock { [weak self] (changes: RealmCollectionChange) in
      guard let tableView = self?.tableView else { return }
      switch changes {
      case .initial:
        // Results are now populated and can be accessed without blocking the UI
        tableView.reloadData()
        break
      case .update(_, let deletions, let insertions, let modifications):
        // Query results have changed, so apply them to the UITableView
        tableView.beginUpdates()
        tableView.insertRows(at: insertions.map({ IndexPath(row: $0, section: 0) }),
                           with: .automatic)
        tableView.deleteRows(at: deletions.map({ IndexPath(row: $0, section: 0)}),
                           with: .automatic)
        tableView.reloadRows(at: modifications.map({ IndexPath(row: $0, section: 0) }),
                           with: .automatic)
        tableView.endUpdates()
        break
      case .error(let error):
        // An error occurred while opening the Realm file on the background worker thread
        fatalError("\(error)")
        break
      }
    }
  }

  deinit {
    notificationToken?.stop()
  }
}

如果没有,那么您可能需要使用其他类型的Realm通知。

在任何情况下,即使您的应用中的用户界面没有更新,Realm对象也会处于实时状态,并且会在其值发生变化时自行更新。您应该能够在应用程序中设置断点并直接检查对象以确认您的数据是否正在发生。祝你好运!