> On Aug 25, 2014, at 10:47 AM, Jeff Kingyens <[email protected]> wrote: > > I tried upgrading to 1.0.2 but I was getting link errors on a couple of > symbols in xcode when building. Switching back to 1.0.1 made the errors go > away, so I just held back :( I believe the symbol that couldn't be resolved > was CBLUITableSource. Should there be any issue here?
Oops, that's a bug. In 1.0.2 we're being careful not to expose symbols in the static library other than the ones in the public API, so there's a list of symbols to export. I forgot to add CBLUITableSource to it. We'll release an update of 1.0.2. In the meantime you can work around this by using NSClassFromString(@"CBLUITableSource") instead of the literal NSUITableSource. —Jens -- You received this message because you are subscribed to the Google Groups "Couchbase Mobile" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/mobile-couchbase/AF08D35D-2336-49ED-9F7E-A9155737EF78%40couchbase.com. For more options, visit https://groups.google.com/d/optout.
