12345678910111213141516171819202122 |
- //
- // HomeProblemTopCollectCell.m
- // smartRhino
- //
- // Created by niuzhen on 2020/5/19.
- // Copyright © 2020 tederen. All rights reserved.
- //
- #import "HomeProblemTopCollectCell.h"
- @implementation HomeProblemTopCollectCell
- - (void)awakeFromNib {
- [super awakeFromNib];
- // Initialization code
- }
- - (void)setImageViewWithString:(NSString *)imageStr
- {
- [self.imagV sd_setImageWithURL:[NSURL URLWithString:imageStr] placeholderImage:kPlaceHolderImage];
- }
- @end
|