// // BaseTableViewCell.h // zhuxun // // Created by winsoft on 16/8/24. // // #import #import "SWTableViewCell.h" #define BaseTableViewCellIdentifier @"BaseTableViewCellIdentifier" @interface BaseTableViewCell : SWTableViewCell @property (nonatomic, weak)NSIndexPath *indexPath; @property (nonatomic, weak)UITableView *tableView; /** * cell 向下偏移量 */ @property (nonatomic , assign) CGFloat insertY; /** * if yes, select btn show. base tableview.allowsMultipleselection. */ @property (nonatomic , assign) BOOL allowsMultipleSelection; @property (nonatomic , assign) BOOL cellSelected; @end