ifish/Ifish/AlibcTradeSDK-3.1.1.96/Frameworks/AlibcLinkPartnerSDK.framework/Headers/ALPJumpParam.h

53 lines
955 B
Objective-C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// ALPJumpParam.h
// ALPLinkPartnerSDK
//
// Created by czp on 16/9/22.
// Copyright © 2016年 czp. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "ALPError.h"
//对应的linkKey
FOUNDATION_EXTERN NSString *const kTaobaoLinkKey; //打开淘宝
FOUNDATION_EXTERN NSString *const kTmallLinkKey; //打开天猫
@interface ALPJumpParam : NSObject
/**
* 优先拉起的applink协议keylinkKey为空默认是拉起手淘
*/
@property (nonatomic, copy) NSString *linkKey;
/**
* 返回的跳转地址(可选)
*/
@property (nonatomic, copy) NSString *backURL;
/**
* 跳转时当前页面,用于坑位统计
*/
@property (nonatomic, copy) NSString *currentViewName;
/**
* 额外参数(可选)
*/
@property (nonatomic, strong) NSMutableDictionary *extraParam;
- (ALPError *)isLegalParam;
/**
* 跳转是未安装跳转APP对应的降级地址
*/
- (NSString *)degradeToH5Url;
@end