Chris Ballinger
Chris Ballinger
Another trace in a different place `YapDatabaseAutoViewTransaction`: ``` Thread 9 Crashed: 0 libswiftCore.dylib 0x0000000102b27a94 0x10286c000 + 2865812 (swift_getObjectType + 60) 1 YapTaskQueue 0x0000000101fb2c00 reabstraction thunk helper from @escaping @callee_guaranteed (@owned...
So from what I understand about SR-7719, this can happen when the bridged `Any` is unexpectedly nil. It looks like it's possible, although unlikely, for some of these `Any`s to...
@flovouin Fewer total (all cause) crashes in the app after the patch, but looks like there are still more places that need nil checks. You're right, needs one in findRangeInGroup...
Yep that's where I've landed as well, GRDB is great. Maybe you could build some Yap-like functionality on top of GRDB and release it as a Swift Package?
YapSearchField could also be a good place to add a denormalizationBlock
We use two mappings with separate tableViews managed by UISearchController+UITableViewController
you can point both tableView delegates at the same VC and then make a method like mappingsForTableView that you use in each delegate method On Wed, May 11, 2016 at...
Actually the key seems to be there, it's the object that's nil (???)
``` *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSDictionaryM setObject:forKey:]: object cannot be nil (key: 70C7386C-B75C-49F7-8038-79B2A04E1DD6)' ```
@robbiehanson Ah I think currently I am experiencing a problem similar to this in #105. I would like to trigger a sorting "refresh" on significant distance changes, and the only...