MaskCell.h 646 Bytes
Newer Older
陈俊俊's avatar
陈俊俊 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//
//  MaskCell.h
//  XFFurit
//
//  Created by 陈俊俊 on 15/8/1.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface MaskCell : UITableViewCell
@property (nonatomic,strong)UILabel *titleLabel;
@property (nonatomic,strong)UILabel *lineLabel;
@property (nonatomic,strong)UIButton *Commitbtn;
@property (nonatomic,assign)CGFloat totalWidth;
n22's avatar
n22 committed
16
@property (nonatomic,assign)CGFloat totalHeight;
陈俊俊's avatar
陈俊俊 committed
17

n22's avatar
n22 committed
18
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier totalWidth:(CGFloat)totalWidth totalHeight:(CGFloat)totalHeight;
陈俊俊's avatar
陈俊俊 committed
19 20 21 22

- (void)setTitleStr:(NSString *)str;

@end