How much info will String data type allow me to store? I am looking to store full html text. Is this possible/recommended?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
CoreData string will hold a lot. It should only be limited by the underlying implementation, if at all. I’ve stored full web pages in core data before with no issues at all.
If I had more time I’d write a little loop that incrementally grew a string in core data to see if a limit is ever reached, and if so where that limit is (maybe I will later).