| 1234567891011121314151617181920 |
- //
- // SignViewCell.h
- // 千模
- //
- // Created by MUMEI on 2018/5/31.
- // Copyright © 2018年 MUMEI. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "ActivityModel.h"
- @interface SignViewCell : UITableViewCell
- @property (strong, nonatomic) ActivityModel *model;
- @property (weak, nonatomic) IBOutlet UILabel *beg;
- @property (weak, nonatomic) IBOutlet UITextView *intro;
- @property (weak, nonatomic) IBOutlet UITextView *term;
- @property (weak, nonatomic) IBOutlet UILabel *sendt;
- @property (weak, nonatomic) IBOutlet UILabel *captionLabel;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *introHeight;
- @end
|