1234567891011121314151617 |
- //
- // SocialTableViewCell.h
- // NIMDemo
- //
- // Created by Fenix Wang on 2017/6/20.
- // Copyright © 2017年 Netease. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "SocialItemData.h"
- @interface SocialTableViewCell : UITableViewCell
- - (void)initWidth:(CGFloat)cellWidth;
- - (void)setData:(SocialItemData *)data;
- @end
|