// // MaskCell.h // XFFurit // // Created by 陈俊俊 on 15/8/1. // Copyright (c) 2015年 Xummer. All rights reserved. // #import @interface MaskCell : UITableViewCell @property (nonatomic,strong)UILabel *titleLabel; @property (nonatomic,strong)UILabel *lineLabel; @property (nonatomic,strong)UIButton *Commitbtn; @property (nonatomic,assign)CGFloat totalWidth; @property (nonatomic,assign)CGFloat totalHeight; - (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier totalWidth:(CGFloat)totalWidth totalHeight:(CGFloat)totalHeight; - (void)setTitleStr:(NSString *)str; @end