Possible Duplicate:
What is the maximum length of an NSString object?
I'm trying to decide on a good way to store my tile data on the parse database. What I need is to store 24x24 values, not sure how long those values will be, but let's say I need to store 24x24 bytes (giving me 256 possibilities for each tile). I was thinking of storing them in a big string, is that possible? is there a limit on how big a string should be? or is there a better way to do this in objective c?
Thanks for any advice.