This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@implementation CKComponent (Injection) | |
- (void)updateOnClassInjection { | |
dispatch_async(dispatch_get_main_queue(), ^{ | |
// Search for the first component hostig view | |
id comp = self; | |
while (comp) { | |
comp = [comp nextResponder]; | |
if ([comp isKindOfClass:[CKComponentHostingView class]]) { |
OlderNewer