| 123456789101112131415161718192021222324252627282930313233 |
- //
- // PurchaseintentionCell.h
- // jitao
- //
- // Created by 罗云飞 on 2017/12/9.
- // Copyright © 2017年 罗云飞. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "PurchaseintentionModel.h"
- @protocol PurchaseintentionDelegate <NSObject>//协议
- - (void)transButIndex:(UIButton*)button;//协议方法
- @end
- @interface PurchaseintentionCell : UITableViewCell
- @property(copy,nonatomic)UILabel *title;//标题
- @property(copy,nonatomic)UILabel *state;//状态
- @property(copy,nonatomic)UILabel *ordernumber;//订单状态
- @property(copy,nonatomic)UILabel *time;//时间
- @property(copy,nonatomic)UILabel *content;//订单标题1
- @property(copy,nonatomic)UILabel *content1;//订单标题2
- @property(copy,nonatomic)UILabel *content2;//订单标题3
- @property(copy,nonatomic)UIButton *cancelintention;
- @property(copy,nonatomic)UIButton *cancelintention1111;
- @property(copy,nonatomic)UILabel *jiage;
- @property (nonatomic, assign) id<PurchaseintentionDelegate>delegate;//代理属性
- - (void)assignment:(PurchaseintentionModel *)model commoditysModel:(NSArray *)arr;
- @end
|