After struggling to create Realm object in App Group, I seem to have hit the next issue.
Objects that save into Realm with no issues when in Documents directory does not seem to save when in App Groups.
realm.transactionWithBlock { () -> Void in
let testModel = TestModel(test: "xyz")
self.realm.addObject(testModel)
}
Is this a known issue?