I think you are trying to load into a TableView, and by default it is truncated to fit the width of the screen as a table.
Place a breakpoint on the line that accesses the article and sees its value.
Otherwise, you can print it on the console
NSLog(@"my article test string is: %@", article.test);
Edited by:
One more note: your data model can fix the Max Length property to 50.
source share