So, what I'm trying to do, is take a .txt or html file, being able to search through it, and grab a piece of text from file, place it into a string and finally adding it into a textView.
Each couple of piece of text will be divided like this:
001:001 Text1
001:002 Text2
001:003 Text3
002:001 Text1a
002:002 Text1b
... and so on
So essentially you would search the text for those numbers, and it would grab the text only. Is there a way to do that using objective C and using it on a iPhone app?

Whats the most simple say of taking a text file, grabbing all the text, and throwing it into the textView?can by done viaNSString *fileString = [NSString stringWithContentsOfFile:@"PATH"]; [textView replaceCharactersInRange:NSMakeRange(0UL, [[textView textStorage] length]) withString:fileString];– johne Oct 27 at 22:23