Both of the following seem to return, so is there a reason to use return
in methods?
- (void)goDoIt {
[self doSomething];
[self doSomethingAndReturn];
}
- (void)doSomething {
// just visiting
}
- (void)doSomethingAndReturn {
return; // returning now
}
Is there any difference?