| 12345678910111213141516171819202122232425262728 |
- //
- // BaseTableViewCell.h
- // zhuxun
- //
- // Created by winsoft on 16/8/24.
- //
- //
- #import <UIKit/UIKit.h>
- #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
|