ASJumpHandler.h 533 B

123456789101112131415161718192021222324
  1. //
  2. // ASJumpHandler.h
  3. // Asteria
  4. //
  5. // Created by xingyu on 2024/7/12.
  6. //
  7. #import <Foundation/Foundation.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface ASJumpHandler : NSObject
  10. + (instancetype)shareInstance;
  11. //推送消息相关点击跳转处理
  12. - (void)handleMessage:(NSString *)title messageId:(NSString *)mid pushPara:(NSString *)push_para pushType:(NSInteger)type;
  13. //普通广告位类似点击跳转
  14. - (void)handleJumpWithTitle:(NSString *)title jumpData:(NSString *)jumpData type:(NSInteger)type;
  15. @end
  16. NS_ASSUME_NONNULL_END