JXCardCell.h 515 B

1234567891011121314151617181920
  1. //
  2. // JXCardCell.h
  3. // shiku_im
  4. //
  5. // Created by Apple on 16/10/10.
  6. // Copyright © 2016年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "JXBaseChatCell.h"
  10. @class JXChatViewController;
  11. @interface JXCardCell : JXBaseChatCell
  12. @property (nonatomic,strong) UIImageView * imageBackground;
  13. @property (nonatomic,strong) UILabel * nameLabel;
  14. @property (nonatomic,strong) UIImageView * cardHeadImage;
  15. @property (nonatomic, strong) UIView *lineView;
  16. @property (nonatomic, strong) UILabel *title;
  17. @end