├── .gitignore ├── .travis.yml ├── Example ├── ICPaySDK.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── ICPaySDK-Example.xcscheme ├── ICPaySDK.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── ICPaySDK │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── ICAppDelegate.h │ ├── ICAppDelegate.m │ ├── ICCircleTestViewController.h │ ├── ICCircleTestViewController.m │ ├── ICCircleTestViewController.xib │ ├── ICPayImp │ │ ├── AliModel.h │ │ ├── AliModel.m │ │ ├── ICPayUtils.h │ │ ├── ICPayUtils.m │ │ ├── WxModel.h │ │ └── WxModel.m │ ├── ICPaySDK-Info.plist │ ├── ICPaySDK-Prefix.pch │ ├── ICPaySDKService.h │ ├── ICPaySDKService.m │ ├── ICViewController.h │ ├── ICViewController.m │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── ICPaySDK.podspec ├── ICPaySDK ├── Base │ ├── ICBaseParamsModel.h │ ├── ICBaseParamsModel.m │ ├── ICBasePayEntry.h │ ├── ICBasePayEntry.m │ ├── ICMacros.h │ ├── ICPayDesignManager.h │ ├── ICPayDesignManager.m │ ├── ICPaySDK.h │ └── Protocol │ │ ├── ICIAliModel.h │ │ ├── ICIWxModel.h │ │ └── ICPaySDKAutoServiceProtocol.h ├── ICAliPay │ ├── ICAliPayEntry.h │ ├── ICAliPayEntry.m │ ├── ICAliPayModel.h │ └── ICAliPayModel.m └── ICWxPay │ ├── ICWxPayEntry.h │ ├── ICWxPayEntry.m │ ├── ICWxPayModel.h │ └── ICWxPayModel.m ├── LICENSE ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/ICPaySDK.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ICPaySDK.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ICPaySDK.xcodeproj/xcshareddata/xcschemes/ICPaySDK-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK.xcodeproj/xcshareddata/xcschemes/ICPaySDK-Example.xcscheme -------------------------------------------------------------------------------- /Example/ICPaySDK.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ICPaySDK.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/ICPaySDK/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/ICPaySDK/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/ICPaySDK/ICAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK/ICAppDelegate.h -------------------------------------------------------------------------------- /Example/ICPaySDK/ICAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK/ICAppDelegate.m -------------------------------------------------------------------------------- /Example/ICPaySDK/ICCircleTestViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK/ICCircleTestViewController.h -------------------------------------------------------------------------------- /Example/ICPaySDK/ICCircleTestViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK/ICCircleTestViewController.m -------------------------------------------------------------------------------- /Example/ICPaySDK/ICCircleTestViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK/ICCircleTestViewController.xib -------------------------------------------------------------------------------- /Example/ICPaySDK/ICPayImp/AliModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK/ICPayImp/AliModel.h -------------------------------------------------------------------------------- /Example/ICPaySDK/ICPayImp/AliModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK/ICPayImp/AliModel.m -------------------------------------------------------------------------------- /Example/ICPaySDK/ICPayImp/ICPayUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK/ICPayImp/ICPayUtils.h -------------------------------------------------------------------------------- /Example/ICPaySDK/ICPayImp/ICPayUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK/ICPayImp/ICPayUtils.m -------------------------------------------------------------------------------- /Example/ICPaySDK/ICPayImp/WxModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK/ICPayImp/WxModel.h -------------------------------------------------------------------------------- /Example/ICPaySDK/ICPayImp/WxModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK/ICPayImp/WxModel.m -------------------------------------------------------------------------------- /Example/ICPaySDK/ICPaySDK-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK/ICPaySDK-Info.plist -------------------------------------------------------------------------------- /Example/ICPaySDK/ICPaySDK-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK/ICPaySDK-Prefix.pch -------------------------------------------------------------------------------- /Example/ICPaySDK/ICPaySDKService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK/ICPaySDKService.h -------------------------------------------------------------------------------- /Example/ICPaySDK/ICPaySDKService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK/ICPaySDKService.m -------------------------------------------------------------------------------- /Example/ICPaySDK/ICViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK/ICViewController.h -------------------------------------------------------------------------------- /Example/ICPaySDK/ICViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK/ICViewController.m -------------------------------------------------------------------------------- /Example/ICPaySDK/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ICPaySDK/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/ICPaySDK/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/ICPaySDK/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ICPaySDK.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/ICPaySDK.podspec -------------------------------------------------------------------------------- /ICPaySDK/Base/ICBaseParamsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/ICPaySDK/Base/ICBaseParamsModel.h -------------------------------------------------------------------------------- /ICPaySDK/Base/ICBaseParamsModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/ICPaySDK/Base/ICBaseParamsModel.m -------------------------------------------------------------------------------- /ICPaySDK/Base/ICBasePayEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/ICPaySDK/Base/ICBasePayEntry.h -------------------------------------------------------------------------------- /ICPaySDK/Base/ICBasePayEntry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/ICPaySDK/Base/ICBasePayEntry.m -------------------------------------------------------------------------------- /ICPaySDK/Base/ICMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/ICPaySDK/Base/ICMacros.h -------------------------------------------------------------------------------- /ICPaySDK/Base/ICPayDesignManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/ICPaySDK/Base/ICPayDesignManager.h -------------------------------------------------------------------------------- /ICPaySDK/Base/ICPayDesignManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/ICPaySDK/Base/ICPayDesignManager.m -------------------------------------------------------------------------------- /ICPaySDK/Base/ICPaySDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/ICPaySDK/Base/ICPaySDK.h -------------------------------------------------------------------------------- /ICPaySDK/Base/Protocol/ICIAliModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/ICPaySDK/Base/Protocol/ICIAliModel.h -------------------------------------------------------------------------------- /ICPaySDK/Base/Protocol/ICIWxModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/ICPaySDK/Base/Protocol/ICIWxModel.h -------------------------------------------------------------------------------- /ICPaySDK/Base/Protocol/ICPaySDKAutoServiceProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/ICPaySDK/Base/Protocol/ICPaySDKAutoServiceProtocol.h -------------------------------------------------------------------------------- /ICPaySDK/ICAliPay/ICAliPayEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/ICPaySDK/ICAliPay/ICAliPayEntry.h -------------------------------------------------------------------------------- /ICPaySDK/ICAliPay/ICAliPayEntry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/ICPaySDK/ICAliPay/ICAliPayEntry.m -------------------------------------------------------------------------------- /ICPaySDK/ICAliPay/ICAliPayModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/ICPaySDK/ICAliPay/ICAliPayModel.h -------------------------------------------------------------------------------- /ICPaySDK/ICAliPay/ICAliPayModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/ICPaySDK/ICAliPay/ICAliPayModel.m -------------------------------------------------------------------------------- /ICPaySDK/ICWxPay/ICWxPayEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/ICPaySDK/ICWxPay/ICWxPayEntry.h -------------------------------------------------------------------------------- /ICPaySDK/ICWxPay/ICWxPayEntry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/ICPaySDK/ICWxPay/ICWxPayEntry.m -------------------------------------------------------------------------------- /ICPaySDK/ICWxPay/ICWxPayModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/ICPaySDK/ICWxPay/ICWxPayModel.h -------------------------------------------------------------------------------- /ICPaySDK/ICWxPay/ICWxPayModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/ICPaySDK/ICWxPay/ICWxPayModel.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CorkiiOS/ICPaySDK/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------