. , - , . : ( ). , , , , ... , , , - .
, , :
dispatch_async(dispatch_get_main_queue(), ^{
});
, , , . :
dispatch_async(dispatch_get_main_queue(), ^{
[self.somewidget setNeedsDisplay];
[self.view setNeedsDisplay];
[self.dontforgetme setNeedsDisplay];
});
, , , GDC, . , , GUI , :
#define DONT_BLOCK_UI() \
NSAssert(![NSThread isMainThread], @"Don't block the UI thread please!")
#define BLOCK_UI() \
NSAssert([NSThread isMainThread], @"You aren't running in the UI thread!")
, , , , . https://github.com/gradha/ELHASO-iOS-snippets, .