BaseTableViewCell.h 628 B

12345678910111213141516171819202122232425262728
  1. //
  2. // BaseTableViewCell.h
  3. // zhuxun
  4. //
  5. // Created by winsoft on 16/8/24.
  6. //
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SWTableViewCell.h"
  10. #define BaseTableViewCellIdentifier @"BaseTableViewCellIdentifier"
  11. @interface BaseTableViewCell : SWTableViewCell
  12. @property (nonatomic, weak)NSIndexPath *indexPath;
  13. @property (nonatomic, weak)UITableView *tableView;
  14. /**
  15. * cell 向下偏移量
  16. */
  17. @property (nonatomic , assign) CGFloat insertY;
  18. /**
  19. * if yes, select btn show. base tableview.allowsMultipleselection.
  20. */
  21. @property (nonatomic , assign) BOOL allowsMultipleSelection;
  22. @property (nonatomic , assign) BOOL cellSelected;
  23. @end