// // SocialShareManager.h // YuMi // // Created by P on 2025/3/18. // #import NS_ASSUME_NONNULL_BEGIN @interface ShareItmeInfo : PIBaseModel @property(nonatomic, copy) NSString *shareId; @property(nonatomic, copy) NSString *uid; @property(nonatomic, copy) NSString *targetUid; @property(nonatomic, copy) NSString *targetId; @property(nonatomic, assign) NSInteger shareType; // 1. 房间; 2. 活动 @end @interface SocialShareManager : NSObject @property(nonatomic, copy, nullable) void(^handleJumpToRoom)(ShareItmeInfo *shareItem); + (instancetype)sharedManager; - (void)handleURL:(NSURL *)url; - (void)checkSocialShareItem; - (void)reset; @end NS_ASSUME_NONNULL_END