TUIGroupPinPageViewController.h 720 B

1234567891011121314151617181920212223
  1. //
  2. // TUIGroupPinPageViewController.h
  3. // TUIChat
  4. //
  5. // Created by Tencent on 2024/05/20.
  6. // Copyright © 2023 Tencent. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @import ImSDK_Plus;
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface TUIGroupPinPageViewController : UIViewController
  12. @property(nonatomic, strong) UITableView *tableview;
  13. @property(nonatomic, strong) UIView *customArrowView;
  14. @property(nonatomic, strong) NSArray *groupPinList;
  15. @property (nonatomic, copy) void(^onClickRemove)(V2TIMMessage *originMessage);
  16. @property (nonatomic, copy) void(^onClickCellView)(V2TIMMessage *originMessage);
  17. @property(nonatomic, assign) BOOL canRemove;
  18. @property (nonatomic,strong) UIView *bottomShadow;
  19. @end
  20. NS_ASSUME_NONNULL_END