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