Files
JJBB/Sdk/iOS/YuCheng/ThirdLibs/ppilib/libPayecoPayPlugin.h

46 lines
1.2 KiB
C
Raw Permalink Normal View History

2024-08-23 15:49:34 +08:00
//
// PayEcoPpi.h
// PPIDemo
//
// Created by TangHua on 14-10-27.
// Copyright (c) 2014年 PayEco. All rights reserved.
//
/*
* : libPayecoPayPlugin.h,libPayecoPayPlugin.a --
* :
* Build Settings -> Linking -> Other Link Flags: -ObjC
* Frameworks: Security.framework
SystemConfiguration.framework
CFNetwork.framework
QuartzCore.framework
CoreGraphics.framework
CoreLocation.Frameworks
*
*/
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
//易联支付代理
@protocol PayEcoPpiDelegate <NSObject>
@optional
- (void)payResponse:(NSString *)respJson; //respJson: 支付返回数据报文(json格式)
@end
@interface PayEcoPpi : NSObject
/*
* ()
* env: 00: ,01:
* reqJson: (json格式)
* delegate: ,
* orientation: : 00: 01:
*/
- (void)startPay:(NSString *)reqJson delegate:(id<PayEcoPpiDelegate>) delegate env:(NSString *)env orientation:(NSString *)orientation;
@end