Right thanks, but something like this keeps going out of bounds for some reason. It makes no sense to me as to why...
Code:
NSString *hold=[page substringWithRange:NSMakeRange(page.length-200,page.length-150)]
Now I know it seems like it can go out of bounds from becoming negative, but it can't because I did a length check on 'page' and it came out of length 99,419. So it should just be substringing from values INSIDE that string, but it goes OOB...any idea why?
And this isn't what am actually using this for. For some reason the index to index+30 (which was around index of 66,000) was going OOB and I couldn't figure out why, so then I did this test just to see, and that's what I found. Numbers too large?
Thanks