TiUISubMenuThreeViewCell.h 444 B

12345678910111213141516171819202122
  1. //
  2. // TiUISubMenuThreeViewCell.h
  3. // TiSDKDemo
  4. //
  5. // Created by iMacA1002 on 2019/12/6.
  6. // Copyright © 2020 Tillusory Tech. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "TIConfig.h"
  10. #import "TIButton.h"
  11. @interface TiUISubMenuThreeViewCell : UICollectionViewCell
  12. @property(nonatomic,strong)TIMenuMode *subMod;
  13. - (void)setSubMod:(TIMenuMode *)subMod WithTag:(NSInteger)tag;
  14. -(void)startAnimation;
  15. -(void)endAnimation;
  16. @end