I have two methods. I want to execute one after finishing task of first one. How can i do this?
How to perform another method after finishing a method using completion block in objective c?
1.4k Views Asked by Saad At
2
There are 2 best solutions below
0

I assume you are looking for simple completion block solution, so this should be sufficient.
-(void)method1:(void (^ __nullable)(void))completion {
NSLog(@"method1 started");
//Do some stuff, then completion
completion();
NSLog(@"method1 ended");
}
-(void)method2{
NSLog(@"method2 called");
}
Use like this,
- (void)viewDidLoad{
[super viewDidLoad];
[self method1:^{ //After method1 completion, method2 will be called
[self method2];
}];
}
you can do something like,
This is the simple example that how to manage it!! In this I have used AFNEtworking's method, so don't confuse with it!