Inicialização lenta em Objective-C
A inicialização lenta em Objective-C pode ser feita de maneira simples via BloodMagic @interface ViewController : UIViewController <BMLazy>@property (nonatomic, strong) ProgressViewService *progressViewService;@property (nonatomic, strong) ResourceLoader *resourceLoader;@end@implementation ViewController@dynamic progressViewService;@dynamic resourceLoader;- (void)loadResources{ …
Continuar lendo