UITableViewCell+MAC.h 575 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // UITableViewCell+MAC.h
  3. // WeiSchoolTeacher
  4. //
  5. // Created by MacKun on 15/12/18.
  6. // Copyright © 2015年 MacKun. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface UITableViewCell(MAC)
  10. @property (nonatomic, assign) BOOL isSelect;
  11. /**
  12. * @brief 加载同类名的nib
  13. *
  14. * @return nib
  15. */
  16. +(id)nibCell;
  17. /**
  18. * 用代码创建Cell时候设置的cellIdentifier
  19. *
  20. * @return cellIdentifier;
  21. */
  22. +(NSString*)cellIdentifier;
  23. /**
  24. * 用代码创建Cell
  25. *
  26. * @return self;
  27. */
  28. +(id)loadFromCellStyle:(UITableViewCellStyle)cellStyle;
  29. @end