I'm trying read text from text file. I used stringWithContentsOfFile to do this.
pathName = [[NSBundle mainBundle] pathForResource:sample ofType:@"txt"];
entireContent = [NSString stringWithContentsOfFile:pathName encoding:NSUTF8StringEncoding error:NULL];
entireChapter = [entireContent substringWithRange:sourceRange];
Have any of you got another way to get string fast?