CHD_ListView_Structure.h 581 B

1234567891011121314151617181920212223242526
  1. //
  2. // UITableView+Structure.h
  3. //
  4. // Created by chd on 2017/8/24.
  5. // Copyright © 2017年 chd. All rights reserved.
  6. // https://github.com/donggelaile/CHD_ListView_Structure
  7. #import <UIKit/UIKit.h>
  8. //switch
  9. @interface CHD_ListView_Structure : NSObject
  10. /**
  11. 功能开关
  12. @param isOpenT 是否开启TableV结构展示 (ShowOrNot TableView Strcuture)
  13. @param isOpenC 是否开启colletionV结构展示 (ShowOrNot CollectionView Strcuture)
  14. */
  15. + (void)openStructureShow_TableV:(BOOL)isOpenT collectionV:(BOOL)isOpenC;//只有开启了选项,Toggle才会生效。
  16. @end