SignViewCell.h 623 B

1234567891011121314151617181920
  1. //
  2. // SignViewCell.h
  3. // 千模
  4. //
  5. // Created by MUMEI on 2018/5/31.
  6. // Copyright © 2018年 MUMEI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "ActivityModel.h"
  10. @interface SignViewCell : UITableViewCell
  11. @property (strong, nonatomic) ActivityModel *model;
  12. @property (weak, nonatomic) IBOutlet UILabel *beg;
  13. @property (weak, nonatomic) IBOutlet UITextView *intro;
  14. @property (weak, nonatomic) IBOutlet UITextView *term;
  15. @property (weak, nonatomic) IBOutlet UILabel *sendt;
  16. @property (weak, nonatomic) IBOutlet UILabel *captionLabel;
  17. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *introHeight;
  18. @end