SocialTableViewCell.h 329 B

1234567891011121314151617
  1. //
  2. // SocialTableViewCell.h
  3. // NIMDemo
  4. //
  5. // Created by Fenix Wang on 2017/6/20.
  6. // Copyright © 2017年 Netease. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SocialItemData.h"
  10. @interface SocialTableViewCell : UITableViewCell
  11. - (void)initWidth:(CGFloat)cellWidth;
  12. - (void)setData:(SocialItemData *)data;
  13. @end