├── .DS_Store ├── 1.mobileprovision ├── BS-软件配置1.png ├── BS-软件配置2.png ├── Bsphp ├── .DS_Store ├── AFNetworking │ ├── AFHTTPSessionManager.h │ ├── AFHTTPSessionManager.m │ ├── AFNetworkReachabilityManager.h │ ├── AFNetworkReachabilityManager.m │ ├── AFNetworking.h │ ├── AFSecurityPolicy.h │ ├── AFSecurityPolicy.m │ ├── AFURLRequestSerialization.h │ ├── AFURLRequestSerialization.m │ ├── AFURLResponseSerialization.h │ ├── AFURLResponseSerialization.m │ ├── AFURLSessionManager.h │ └── AFURLSessionManager.m ├── Config.m ├── MBProgressHUD │ ├── MBProgressHUD+NJ.h │ ├── MBProgressHUD+NJ.m │ ├── MBProgressHUD.h │ └── MBProgressHUD.m ├── WX_NongShiFu123.h ├── WX_NongShiFu123.mm └── bsphp │ ├── DES3Util.h │ ├── DES3Util.m │ ├── MF_Base64Additions.h │ ├── MF_Base64Additions.m │ ├── NSDictionary+StichingStringkeyValue.h │ ├── NSDictionary+StichingStringkeyValue.m │ ├── NSString+MD5.h │ ├── NSString+MD5.m │ ├── NSString+Tools.h │ ├── NSString+Tools.m │ ├── NSString+URLCode.h │ ├── NSString+URLCode.m │ ├── NetWorkingApiClient.h │ ├── NetWorkingApiClient.m │ ├── getKeychain.h │ └── getKeychain.m ├── Config.h ├── README.md ├── SCLAlertView ├── SCLAlertView.h ├── SCLAlertView.m ├── SCLAlertViewResponder.h ├── SCLAlertViewResponder.m ├── SCLAlertViewStyleKit.h ├── SCLAlertViewStyleKit.m ├── SCLButton.h ├── SCLButton.m ├── SCLMacros.h ├── SCLSwitchView.h ├── SCLSwitchView.m ├── SCLTextView.h ├── SCLTextView.m ├── SCLTimerDisplay.h ├── SCLTimerDisplay.m ├── UIImage+ImageEffects.h └── UIImage+ImageEffects.m ├── main.m ├── myipad.cn-Prefix.pch ├── myipad.cn.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── WorkspaceSettings.xcsettings │ └── xcuserdata │ │ ├── apple.xcuserdatad │ │ └── WorkspaceSettings.xcsettings │ │ ├── guyongagng.xcuserdatad │ │ └── WorkspaceSettings.xcsettings │ │ ├── guyonggang.xcuserdatad │ │ └── IDEFindNavigatorScopes.plist │ │ ├── nongshifu.xcuserdatad │ │ └── WorkspaceSettings.xcsettings │ │ └── shisange.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ └── myipad.cn.xcscheme └── xcuserdata │ ├── apple.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── guyongagng.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── guyonggang.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── mac126.xcuserdatad │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ ├── macgu.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── macgyg.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── nongshifu.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ └── xcschememanagement.plist │ ├── shisange.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ └── xcschememanagement.plist │ └── yi.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── udid.php ├── 参数填写说明.png ├── 购买-更新说明图.png └── 通用BSPHP对接OC源码.zip /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/.DS_Store -------------------------------------------------------------------------------- /1.mobileprovision: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/1.mobileprovision -------------------------------------------------------------------------------- /BS-软件配置1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/BS-软件配置1.png -------------------------------------------------------------------------------- /BS-软件配置2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/BS-软件配置2.png -------------------------------------------------------------------------------- /Bsphp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/.DS_Store -------------------------------------------------------------------------------- /Bsphp/AFNetworking/AFHTTPSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/AFNetworking/AFHTTPSessionManager.h -------------------------------------------------------------------------------- /Bsphp/AFNetworking/AFHTTPSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/AFNetworking/AFHTTPSessionManager.m -------------------------------------------------------------------------------- /Bsphp/AFNetworking/AFNetworkReachabilityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/AFNetworking/AFNetworkReachabilityManager.h -------------------------------------------------------------------------------- /Bsphp/AFNetworking/AFNetworkReachabilityManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/AFNetworking/AFNetworkReachabilityManager.m -------------------------------------------------------------------------------- /Bsphp/AFNetworking/AFNetworking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/AFNetworking/AFNetworking.h -------------------------------------------------------------------------------- /Bsphp/AFNetworking/AFSecurityPolicy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/AFNetworking/AFSecurityPolicy.h -------------------------------------------------------------------------------- /Bsphp/AFNetworking/AFSecurityPolicy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/AFNetworking/AFSecurityPolicy.m -------------------------------------------------------------------------------- /Bsphp/AFNetworking/AFURLRequestSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/AFNetworking/AFURLRequestSerialization.h -------------------------------------------------------------------------------- /Bsphp/AFNetworking/AFURLRequestSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/AFNetworking/AFURLRequestSerialization.m -------------------------------------------------------------------------------- /Bsphp/AFNetworking/AFURLResponseSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/AFNetworking/AFURLResponseSerialization.h -------------------------------------------------------------------------------- /Bsphp/AFNetworking/AFURLResponseSerialization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/AFNetworking/AFURLResponseSerialization.m -------------------------------------------------------------------------------- /Bsphp/AFNetworking/AFURLSessionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/AFNetworking/AFURLSessionManager.h -------------------------------------------------------------------------------- /Bsphp/AFNetworking/AFURLSessionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/AFNetworking/AFURLSessionManager.m -------------------------------------------------------------------------------- /Bsphp/Config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/Config.m -------------------------------------------------------------------------------- /Bsphp/MBProgressHUD/MBProgressHUD+NJ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/MBProgressHUD/MBProgressHUD+NJ.h -------------------------------------------------------------------------------- /Bsphp/MBProgressHUD/MBProgressHUD+NJ.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/MBProgressHUD/MBProgressHUD+NJ.m -------------------------------------------------------------------------------- /Bsphp/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Bsphp/MBProgressHUD/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/MBProgressHUD/MBProgressHUD.m -------------------------------------------------------------------------------- /Bsphp/WX_NongShiFu123.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/WX_NongShiFu123.h -------------------------------------------------------------------------------- /Bsphp/WX_NongShiFu123.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/WX_NongShiFu123.mm -------------------------------------------------------------------------------- /Bsphp/bsphp/DES3Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/bsphp/DES3Util.h -------------------------------------------------------------------------------- /Bsphp/bsphp/DES3Util.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/bsphp/DES3Util.m -------------------------------------------------------------------------------- /Bsphp/bsphp/MF_Base64Additions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/bsphp/MF_Base64Additions.h -------------------------------------------------------------------------------- /Bsphp/bsphp/MF_Base64Additions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/bsphp/MF_Base64Additions.m -------------------------------------------------------------------------------- /Bsphp/bsphp/NSDictionary+StichingStringkeyValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/bsphp/NSDictionary+StichingStringkeyValue.h -------------------------------------------------------------------------------- /Bsphp/bsphp/NSDictionary+StichingStringkeyValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/bsphp/NSDictionary+StichingStringkeyValue.m -------------------------------------------------------------------------------- /Bsphp/bsphp/NSString+MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/bsphp/NSString+MD5.h -------------------------------------------------------------------------------- /Bsphp/bsphp/NSString+MD5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/bsphp/NSString+MD5.m -------------------------------------------------------------------------------- /Bsphp/bsphp/NSString+Tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/bsphp/NSString+Tools.h -------------------------------------------------------------------------------- /Bsphp/bsphp/NSString+Tools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/bsphp/NSString+Tools.m -------------------------------------------------------------------------------- /Bsphp/bsphp/NSString+URLCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/bsphp/NSString+URLCode.h -------------------------------------------------------------------------------- /Bsphp/bsphp/NSString+URLCode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/bsphp/NSString+URLCode.m -------------------------------------------------------------------------------- /Bsphp/bsphp/NetWorkingApiClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/bsphp/NetWorkingApiClient.h -------------------------------------------------------------------------------- /Bsphp/bsphp/NetWorkingApiClient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/bsphp/NetWorkingApiClient.m -------------------------------------------------------------------------------- /Bsphp/bsphp/getKeychain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/bsphp/getKeychain.h -------------------------------------------------------------------------------- /Bsphp/bsphp/getKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Bsphp/bsphp/getKeychain.m -------------------------------------------------------------------------------- /Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/Config.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/README.md -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/SCLAlertView/SCLAlertView.h -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/SCLAlertView/SCLAlertView.m -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/SCLAlertView/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/SCLAlertView/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/SCLAlertView/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /SCLAlertView/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/SCLAlertView/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /SCLAlertView/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/SCLAlertView/SCLButton.h -------------------------------------------------------------------------------- /SCLAlertView/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/SCLAlertView/SCLButton.m -------------------------------------------------------------------------------- /SCLAlertView/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/SCLAlertView/SCLMacros.h -------------------------------------------------------------------------------- /SCLAlertView/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/SCLAlertView/SCLSwitchView.h -------------------------------------------------------------------------------- /SCLAlertView/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/SCLAlertView/SCLSwitchView.m -------------------------------------------------------------------------------- /SCLAlertView/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/SCLAlertView/SCLTextView.h -------------------------------------------------------------------------------- /SCLAlertView/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/SCLAlertView/SCLTextView.m -------------------------------------------------------------------------------- /SCLAlertView/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/SCLAlertView/SCLTimerDisplay.h -------------------------------------------------------------------------------- /SCLAlertView/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/SCLAlertView/SCLTimerDisplay.m -------------------------------------------------------------------------------- /SCLAlertView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/SCLAlertView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /SCLAlertView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/SCLAlertView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/main.m -------------------------------------------------------------------------------- /myipad.cn-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn-Prefix.pch -------------------------------------------------------------------------------- /myipad.cn.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /myipad.cn.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /myipad.cn.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /myipad.cn.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /myipad.cn.xcodeproj/project.xcworkspace/xcuserdata/apple.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn.xcodeproj/project.xcworkspace/xcuserdata/apple.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /myipad.cn.xcodeproj/project.xcworkspace/xcuserdata/guyongagng.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn.xcodeproj/project.xcworkspace/xcuserdata/guyongagng.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /myipad.cn.xcodeproj/project.xcworkspace/xcuserdata/guyonggang.xcuserdatad/IDEFindNavigatorScopes.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn.xcodeproj/project.xcworkspace/xcuserdata/guyonggang.xcuserdatad/IDEFindNavigatorScopes.plist -------------------------------------------------------------------------------- /myipad.cn.xcodeproj/project.xcworkspace/xcuserdata/nongshifu.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn.xcodeproj/project.xcworkspace/xcuserdata/nongshifu.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /myipad.cn.xcodeproj/project.xcworkspace/xcuserdata/shisange.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn.xcodeproj/project.xcworkspace/xcuserdata/shisange.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /myipad.cn.xcodeproj/xcshareddata/xcschemes/myipad.cn.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn.xcodeproj/xcshareddata/xcschemes/myipad.cn.xcscheme -------------------------------------------------------------------------------- /myipad.cn.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /myipad.cn.xcodeproj/xcuserdata/guyongagng.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn.xcodeproj/xcuserdata/guyongagng.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /myipad.cn.xcodeproj/xcuserdata/guyonggang.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn.xcodeproj/xcuserdata/guyonggang.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /myipad.cn.xcodeproj/xcuserdata/mac126.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn.xcodeproj/xcuserdata/mac126.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /myipad.cn.xcodeproj/xcuserdata/macgu.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn.xcodeproj/xcuserdata/macgu.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /myipad.cn.xcodeproj/xcuserdata/macgyg.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn.xcodeproj/xcuserdata/macgyg.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /myipad.cn.xcodeproj/xcuserdata/macgyg.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn.xcodeproj/xcuserdata/macgyg.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /myipad.cn.xcodeproj/xcuserdata/nongshifu.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn.xcodeproj/xcuserdata/nongshifu.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /myipad.cn.xcodeproj/xcuserdata/nongshifu.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn.xcodeproj/xcuserdata/nongshifu.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /myipad.cn.xcodeproj/xcuserdata/shisange.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn.xcodeproj/xcuserdata/shisange.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /myipad.cn.xcodeproj/xcuserdata/shisange.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn.xcodeproj/xcuserdata/shisange.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /myipad.cn.xcodeproj/xcuserdata/yi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/myipad.cn.xcodeproj/xcuserdata/yi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /udid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/udid.php -------------------------------------------------------------------------------- /参数填写说明.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/参数填写说明.png -------------------------------------------------------------------------------- /购买-更新说明图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/购买-更新说明图.png -------------------------------------------------------------------------------- /通用BSPHP对接OC源码.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nongshifu/Bsphp-des3_vi-UDID/HEAD/通用BSPHP对接OC源码.zip --------------------------------------------------------------------------------