I have an Entity (Article) with an Class defined at xcdatamodel. In this class i defined an String NSString *test;
currentArticle.test = string;
String is more than 50 characters long.
But when i try to fetch the Stored Object with:
Article *article = [fetchedResultsController objectAtIndexPath:indexPath];
then article.test is truncated (50 Characters long). But it should be longer...
Any ideas?