> On 06 Oct 2016, at 20:46, Ken Thomases <[email protected]> wrote: > > When you are using bindings, you must ensure that changes to the properties > to which UI is bound happen only on the main thread. Depending on your > design, you can often do something like: > > dispatch_async(dispatch_get_main_queue(), ^{ self.myProperty = newValue; });
Thanks, that does it. Everything works as expected now. _______________________________________________ Cocoa-dev mailing list ([email protected]) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: https://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to [email protected]
