-(void)replaceDetailImageWithArticle:(LPNewsArticleModel *)article{
NSMutableString body = [NSMutableString stringWithString:article.body];
for (LPNewsDetailImgeInfo image in article.img) {
NSString *replaceString = [NSString stringWithFormat:@”“,image.src,image.alt?image.alt:@””];
[body replaceOccurrencesOfString:image.ref withString:replaceString options:NSCaseInsensitiveSearch range:NSMakeRange(0, body.length)];
}
article.body = [body copy];
}