TUIMenuCell.h 501 B

12345678910111213141516171819
  1. // Created by Tencent on 2023/06/09.
  2. // Copyright © 2023 Tencent. All rights reserved.
  3. #import <UIKit/UIKit.h>
  4. #import "TUIMenuCellData.h"
  5. /////////////////////////////////////////////////////////////////////////////////
  6. //
  7. // TUIMenuCell
  8. //
  9. /////////////////////////////////////////////////////////////////////////////////
  10. @interface TUIMenuCell : UICollectionViewCell
  11. @property(nonatomic, strong) UIImageView *menu;
  12. - (void)setData:(TUIMenuCellData *)data;
  13. @end