サンプルでは以下のようになっています。
// Person model
class Person: Object {
dynamic var name = ""
dynamic var birthdate = NSDate(timeIntervalSince1970: 1)
}
// Create a Person object
let author = Person()
author.name = "David Foster Wallace"
// Get the default Realm
let realm = Realm()
// You only need to do this once (per thread)
// Add to the Realm inside a transaction
realm.write {
realm.add(author)
}
しかし、以下の行がエラーになってしまいます。
let realm = Realm()
特にRealm()の部分のようです。
環境はXCODE7Bata5です。
改善策か、間違いを指摘していただければ幸いです。
一応
import RealmSwift
も、しています。