酷店

MSSAutoresizeLabelFlowLayout.h 687B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // MSSAutoresizeLabelFlowLayout.h
  3. // MSSAutoresizeLabelFlow
  4. //
  5. // Created by Mrss on 15/12/26.
  6. // Copyright © 2015年 expai. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol MSSAutoresizeLabelFlowLayoutDelegate <NSObject>
  10. @optional
  11. - (void)layoutFinishWithNumberOfline:(NSInteger)number;
  12. @end
  13. @protocol MSSAutoresizeLabelFlowLayoutDataSource <NSObject>
  14. - (NSString *)titleForLabelAtIndexPath:(NSIndexPath *)indexPath;
  15. @end
  16. @interface MSSAutoresizeLabelFlowLayout : UICollectionViewFlowLayout
  17. @property (nonatomic,weak) id <MSSAutoresizeLabelFlowLayoutDataSource> dataSource;
  18. @property (nonatomic,weak) id <MSSAutoresizeLabelFlowLayoutDelegate> delegate;
  19. @end