How do you lazy load a NSMutableArray
in tableView:didSelectRowAtIndexPath:
? I am very new to Objective-C, XCode, and iOS programming, so any help is appreciated.
Asked
Active
Viewed 1,975 times
2

champak256
- 115
- 1
- 10
1 Answers
3
Lazy load means 'loading on demand'. So you perform operation only when it is really necessary, and not beforehand. Say we have method:
-(void) init {
self = [super init];
mMyMemberArray = [self loadSomeDataToArray];
}
-(void) tableView:didSelectRowAtIndexPath: {
[someObject processData: mMyMemberArray];
}
This is not lazy loading cause we've loaded data beforehand. But this:
-(void) tableView:didSelectRowAtIndexPath: {
someObject processData: [self loadSomeDataToArray]];
}
is exactly lazy loading, cause you get data when you really need it.

Max
- 16,679
- 4
- 44
- 57