I have a textview that user can edit, when I try to insert the text from the textview to a local property from type Nsstring, I got in this property NSMallocBlock. what is the reason? thank you! this is the defintaion of cartItemComment:
@property (nonatomic, assign) NSString * cartItemComment;
and this is the code:
CartItem *cartItem = [[CartItem alloc]init];
cartItem.cartItemComment = itemRequestText.text;
cartitem is a object that have a property cartItemComment, after those lines, I got NSMallocBlock in cartItemComment.