// // TaskComment.m // Coding_iOS // // Created by ç åé¯ on 14/10/17. // Copyright (c) 2014å¹´ Coding. All rights reserved. // #import "TaskComment.h" @implementation TaskComment - (void)setContent:(NSString *)content{ if (_content != content) { _htmlMedia = [HtmlMedia htmlMediaWithString:content showType:MediaShowTypeCode]; _content = _htmlMedia.contentDisplay; } } @end