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

32 lines
847 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.

//
// ALPJumpFailedStrategy.h
// AlibcLinkPartnerSDK
//
// Created by czp on 16/11/24.
// Copyright © 2016年 czp. All rights reserved.
//
#import <UIKit/UIKit.h>
typedef NS_ENUM(NSInteger, ALPJumpFailedMode)
{
ALPJumpFailedModeOpenH5 = 0,//降级到h5默认
ALPJumpFailedModeOpenDownloadPage = 1,//跳转到下载页
ALPJumpFailedModeOpenBrowser = 2,//跳转到浏览器
ALPJumpFailedModeOpenNone = 3 //不处理返回错误信息
};
@interface ALPJumpFailedStrategy : NSObject
/**
* 跳转失败处理可选不设置默认跳转失败H5页面打开
*/
@property (nonatomic, assign) ALPJumpFailedMode failedMode;
/**
* 跳转失败H5页面打开时自定义webview如果不设置将用默认webview打开
*/
@property (nonatomic, strong) UIWebView *webview;
@end