I'm running through a plist with 4000 words. My code works but it takes a few seconds to run the code. Is there anyway to speed up my code to run through the plist?
NSString *path = [[NSBundle mainBundle] pathForResource:@"myList" ofType:@"plist"];
NSMutableArray *array = [[NSMutableArray alloc] initWithContentsOfFile:path];
for (NSString *str in array) {
NSLog(@"%@", str);
}
Thanks in advance.
NSLog() is slow. Remove that and just do the work, it'll be faster.
Here's a test comparison of printing each line versus making a new string by appending to the existing string.
On my iPhone 6 :
Total Runtime for NSLog: 0.55105 s
Total Runtime for appending: 0.00366363 s
The timing test code was modified from this excellent NSHipster article: http://nshipster.com/benchmarking/