// // Comment.m // Coding_iOS // // Created by 王 原闯 on 14-7-30. // Copyright (c) 2014年 Coding. All rights reserved. // #import "Comment.h" @implementation Comment - (void)setContent:(NSString *)content{ if (_content != content) { _htmlMedia = [HtmlMedia htmlMediaWithString:content showType:MediaShowTypeAll]; _content = _htmlMedia.contentDisplay; } } @end