├── GSCaptchaButton ├── Assets │ └── .gitkeep ├── Classes │ ├── .gitkeep │ ├── .DS_Store │ └── GSCaptchaButton.swift └── .DS_Store ├── _Pods.xcodeproj ├── .DS_Store ├── Example ├── .DS_Store ├── Podfile ├── Pods │ ├── Target Support Files │ │ ├── GSCaptchaButton │ │ │ ├── GSCaptchaButton.modulemap │ │ │ ├── GSCaptchaButton-dummy.m │ │ │ ├── GSCaptchaButton-prefix.pch │ │ │ ├── GSCaptchaButton-umbrella.h │ │ │ ├── GSCaptchaButton.xcconfig │ │ │ └── GSCaptchaButton-Info.plist │ │ └── Pods-GSCaptchaButton_Example │ │ │ ├── Pods-GSCaptchaButton_Example.modulemap │ │ │ ├── Pods-GSCaptchaButton_Example-dummy.m │ │ │ ├── Pods-GSCaptchaButton_Example-umbrella.h │ │ │ ├── Pods-GSCaptchaButton_Example.debug.xcconfig │ │ │ ├── Pods-GSCaptchaButton_Example.release.xcconfig │ │ │ ├── Pods-GSCaptchaButton_Example-Info.plist │ │ │ ├── Pods-GSCaptchaButton_Example-acknowledgements.markdown │ │ │ ├── Pods-GSCaptchaButton_Example-acknowledgements.plist │ │ │ └── Pods-GSCaptchaButton_Example-frameworks.sh │ ├── Manifest.lock │ ├── Local Podspecs │ │ └── GSCaptchaButton.podspec.json │ └── Pods.xcodeproj │ │ └── project.pbxproj ├── GSCaptchaButton.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── GSCaptchaButton-Example.xcscheme │ └── project.pbxproj ├── GSCaptchaButton.xcworkspace │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── contents.xcworkspacedata ├── Podfile.lock └── GSCaptchaButton │ ├── ViewController.swift │ ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ ├── Info.plist │ ├── AppDelegate.swift │ └── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── GSCaptchaButton.podspec ├── .gitignore ├── README.md └── LICENSE /GSCaptchaButton/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GSCaptchaButton/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxxsw/GSCaptchaButton/HEAD/.DS_Store -------------------------------------------------------------------------------- /Example/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxxsw/GSCaptchaButton/HEAD/Example/.DS_Store -------------------------------------------------------------------------------- /GSCaptchaButton/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxxsw/GSCaptchaButton/HEAD/GSCaptchaButton/.DS_Store -------------------------------------------------------------------------------- /GSCaptchaButton/Classes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wxxsw/GSCaptchaButton/HEAD/GSCaptchaButton/Classes/.DS_Store -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'GSCaptchaButton_Example' do 4 | pod 'GSCaptchaButton', :path => '../' 5 | end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GSCaptchaButton/GSCaptchaButton.modulemap: -------------------------------------------------------------------------------- 1 | framework module GSCaptchaButton { 2 | umbrella header "GSCaptchaButton-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GSCaptchaButton/GSCaptchaButton-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_GSCaptchaButton : NSObject 3 | @end 4 | @implementation PodsDummy_GSCaptchaButton 5 | @end 6 | -------------------------------------------------------------------------------- /Example/GSCaptchaButton.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GSCaptchaButton_Example/Pods-GSCaptchaButton_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_GSCaptchaButton_Example { 2 | umbrella header "Pods-GSCaptchaButton_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GSCaptchaButton_Example/Pods-GSCaptchaButton_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_GSCaptchaButton_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_GSCaptchaButton_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GSCaptchaButton/GSCaptchaButton-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Example/GSCaptchaButton.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/GSCaptchaButton.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - GSCaptchaButton (1.0.1) 3 | 4 | DEPENDENCIES: 5 | - GSCaptchaButton (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | GSCaptchaButton: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | GSCaptchaButton: 03bb3550f4e7723eb2b0a6c6decad090a7704119 13 | 14 | PODFILE CHECKSUM: 445d83cddb9d7cd5d85d81c4db3d1783580c665e 15 | 16 | COCOAPODS: 1.7.5 17 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - GSCaptchaButton (1.0.1) 3 | 4 | DEPENDENCIES: 5 | - GSCaptchaButton (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | GSCaptchaButton: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | GSCaptchaButton: 03bb3550f4e7723eb2b0a6c6decad090a7704119 13 | 14 | PODFILE CHECKSUM: 445d83cddb9d7cd5d85d81c4db3d1783580c665e 15 | 16 | COCOAPODS: 1.7.5 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GSCaptchaButton/GSCaptchaButton-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double GSCaptchaButtonVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char GSCaptchaButtonVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GSCaptchaButton_Example/Pods-GSCaptchaButton_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_GSCaptchaButton_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_GSCaptchaButton_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GSCaptchaButton/GSCaptchaButton.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/GSCaptchaButton 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/GSCaptchaButton.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "GSCaptchaButton", 3 | "version": "1.0.1", 4 | "summary": "为普通按钮增加验证码倒计时功能,不影响按钮样式", 5 | "homepage": "https://github.com/wxxsw/GSCaptchaButton", 6 | "license": "MIT", 7 | "authors": { 8 | "Gesen": "i@gesen.me" 9 | }, 10 | "source": { 11 | "git": "https://github.com/wxxsw/GSCaptchaButton.git", 12 | "tag": "1.0.1" 13 | }, 14 | "source_files": "GSCaptchaButton/Classes/**/*", 15 | "platforms": { 16 | "ios": "8.0" 17 | }, 18 | "swift_versions": [ 19 | "4.2", 20 | "5.0" 21 | ], 22 | "swift_version": "5.0" 23 | } 24 | -------------------------------------------------------------------------------- /GSCaptchaButton.podspec: -------------------------------------------------------------------------------- 1 | Pod::Spec.new do |s| 2 | s.name = 'GSCaptchaButton' 3 | s.version = '1.0.1' 4 | s.summary = '为普通按钮增加验证码倒计时功能,不影响按钮样式' 5 | s.homepage = 'https://github.com/wxxsw/GSCaptchaButton' 6 | s.license = 'MIT' 7 | 8 | s.author = { 'Gesen' => 'i@gesen.me' } 9 | s.source = { :git => 'https://github.com/wxxsw/GSCaptchaButton.git', :tag => s.version.to_s } 10 | 11 | s.source_files = 'GSCaptchaButton/Classes/**/*' 12 | 13 | s.ios.deployment_target = '8.0' 14 | s.swift_version = '4.2' 15 | s.swift_versions = ['4.2', '5.0'] 16 | end 17 | -------------------------------------------------------------------------------- /Example/GSCaptchaButton/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // GSCaptchaButton 4 | // 5 | // Created by Gesen on 11/12/2018. 6 | // Copyright (c) 2018 Gesen. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import GSCaptchaButton 11 | 12 | class ViewController: UIViewController { 13 | 14 | @IBOutlet weak var button: GSCaptchaButton! 15 | 16 | override func viewDidLoad() { 17 | super.viewDidLoad() 18 | 19 | } 20 | 21 | @IBAction func tapStart(_ sender: AnyObject) { 22 | button.maxSecond = 30 23 | button.countdown = true 24 | } 25 | 26 | @IBAction func tapStop(_ sender: AnyObject) { 27 | button.countdown = false 28 | } 29 | 30 | } 31 | 32 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | build/ 4 | *.pbxuser 5 | !default.pbxuser 6 | *.mode1v3 7 | !default.mode1v3 8 | *.mode2v3 9 | !default.mode2v3 10 | *.perspectivev3 11 | !default.perspectivev3 12 | xcuserdata 13 | *.xccheckout 14 | *.moved-aside 15 | DerivedData 16 | *.hmap 17 | *.ipa 18 | *.xcuserstate 19 | 20 | # CocoaPods 21 | # 22 | # We recommend against adding the Pods directory to your .gitignore. However 23 | # you should judge for yourself, the pros and cons are mentioned at: 24 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 25 | # 26 | # Pods/ 27 | 28 | # Carthage 29 | # 30 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 31 | # Carthage/Checkouts 32 | 33 | Carthage/Build 34 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GSCaptchaButton_Example/Pods-GSCaptchaButton_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/GSCaptchaButton" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/GSCaptchaButton/GSCaptchaButton.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "GSCaptchaButton" 7 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GSCaptchaButton_Example/Pods-GSCaptchaButton_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/GSCaptchaButton" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/GSCaptchaButton/GSCaptchaButton.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "GSCaptchaButton" 7 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 8 | PODS_BUILD_DIR = ${BUILD_DIR} 9 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/GSCaptchaButton/GSCaptchaButton-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.1 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # GSCaptchaButton 2 | 3 | ## 功能 4 | * 倒计时 5 | * 自动禁用/启用按钮 6 | * 自定义文字 7 | 8 | ## 使用方法 9 | 10 | 无论是自定义控件还是 xib,将继承自 UIButton 改为 GSCaptchaButton 11 | 12 | ```swift 13 | captchaBtn.setTitle("获取验证码", forState: .normal) 14 | captchaBtn.setTitle("正在获取验证码:second秒", forState: .disabled) 15 | 16 | // 注意:second为关键字,会在运行时替换为秒数,所以可以自定义你想要的文本,如: 17 | // captchaBtn.setTitle("second秒后重试", forState: .disabled) 18 | // captchaBtn.setTitle("(second)重新获取", forState: .disabled) 19 | ``` 20 | 开始倒计时 21 | ```swift 22 | captchaBtn.maxSecond = 30 // 默认为60 23 | captchaBtn.countdown = true 24 | ``` 25 | 手动结束 26 | ```swift 27 | captchaBtn.countdown = false 28 | ``` 29 | 判断是否处于倒计时状态 30 | ```swift 31 | captchaBtn.countdown // return Bool 32 | ``` 33 | 34 | ## 要求 35 | 36 | ### Master 37 | 38 | - iOS 8.0+ 39 | - Xcode 10 (Swift 4.2 - 5.0) 40 | 41 | ## 安装 42 | 43 | ### [CocoaPods](http://cocoapods.org/): 44 | 45 | 在 `Podfile` 中增加: 46 | `pod "GSCaptchaButton"` 47 | 48 | ### 手动 49 | 将 `GSCaptchaButton.swift` 文件拖入你的项目 50 | 51 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GSCaptchaButton_Example/Pods-GSCaptchaButton_Example-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/GSCaptchaButton/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ios-marketing", 45 | "size" : "1024x1024", 46 | "scale" : "1x" 47 | } 48 | ], 49 | "info" : { 50 | "version" : 1, 51 | "author" : "xcode" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Ge Sen 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | 23 | -------------------------------------------------------------------------------- /Example/GSCaptchaButton/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GSCaptchaButton_Example/Pods-GSCaptchaButton_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## GSCaptchaButton 5 | 6 | The MIT License (MIT) 7 | 8 | Copyright (c) 2015 Ge Sen 9 | 10 | Permission is hereby granted, free of charge, to any person obtaining a copy 11 | of this software and associated documentation files (the "Software"), to deal 12 | in the Software without restriction, including without limitation the rights 13 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 14 | copies of the Software, and to permit persons to whom the Software is 15 | furnished to do so, subject to the following conditions: 16 | 17 | The above copyright notice and this permission notice shall be included in all 18 | copies or substantial portions of the Software. 19 | 20 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 21 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 22 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 23 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 24 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 25 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 26 | SOFTWARE. 27 | 28 | 29 | Generated by CocoaPods - https://cocoapods.org 30 | -------------------------------------------------------------------------------- /Example/GSCaptchaButton/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // GSCaptchaButton 4 | // 5 | // Created by Gesen on 11/12/2018. 6 | // Copyright (c) 2018 Gesen. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GSCaptchaButton_Example/Pods-GSCaptchaButton_Example-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | The MIT License (MIT) 18 | 19 | Copyright (c) 2015 Ge Sen 20 | 21 | Permission is hereby granted, free of charge, to any person obtaining a copy 22 | of this software and associated documentation files (the "Software"), to deal 23 | in the Software without restriction, including without limitation the rights 24 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 25 | copies of the Software, and to permit persons to whom the Software is 26 | furnished to do so, subject to the following conditions: 27 | 28 | The above copyright notice and this permission notice shall be included in all 29 | copies or substantial portions of the Software. 30 | 31 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 32 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 33 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 34 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 35 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 36 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 37 | SOFTWARE. 38 | 39 | 40 | License 41 | MIT 42 | Title 43 | GSCaptchaButton 44 | Type 45 | PSGroupSpecifier 46 | 47 | 48 | FooterText 49 | Generated by CocoaPods - https://cocoapods.org 50 | Title 51 | 52 | Type 53 | PSGroupSpecifier 54 | 55 | 56 | StringsTable 57 | Acknowledgements 58 | Title 59 | Acknowledgements 60 | 61 | 62 | -------------------------------------------------------------------------------- /GSCaptchaButton/Classes/GSCaptchaButton.swift: -------------------------------------------------------------------------------- 1 | // 2 | // GSCaptchaButton.swift 3 | // GSCaptchaButton 4 | // 5 | // Created by Gesen on 15/6/4. 6 | // Copyright (c) 2015年 Gesen. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | public class GSCaptchaButton: UIButton { 12 | 13 | // MARK: Properties 14 | 15 | public var maxSecond = 60 16 | public var countdown = false { 17 | didSet { 18 | if oldValue != countdown { 19 | countdown ? startCountdown() : stopCountdown() 20 | } 21 | } 22 | } 23 | 24 | private var second = 0 25 | private var timer: Timer? 26 | 27 | private var timeLabel = UILabel() 28 | private var normalText: String! 29 | private var normalTextColor: UIColor! 30 | private var disabledText: String! 31 | private var disabledTextColor: UIColor! 32 | 33 | // MARK: Life Cycle 34 | 35 | deinit { 36 | countdown = false 37 | } 38 | 39 | // MARK: Setups 40 | 41 | private func setupLabel() { 42 | guard timeLabel.superview == nil else { return } 43 | 44 | normalText = title(for: .normal) ?? "" 45 | disabledText = title(for: .disabled) ?? "" 46 | normalTextColor = titleColor(for: .normal) ?? .white 47 | disabledTextColor = titleColor(for: .disabled) ?? .white 48 | setTitle("", for: .normal) 49 | setTitle("", for: .disabled) 50 | timeLabel.frame = bounds 51 | timeLabel.autoresizingMask = [.flexibleWidth, .flexibleHeight] 52 | timeLabel.textAlignment = .center 53 | timeLabel.font = titleLabel?.font 54 | timeLabel.textColor = normalTextColor 55 | timeLabel.text = normalText 56 | addSubview(timeLabel) 57 | } 58 | 59 | // MARK: Private 60 | 61 | private func startCountdown() { 62 | setupLabel() 63 | second = maxSecond 64 | updateDisabled() 65 | 66 | if timer != nil { 67 | timer!.invalidate() 68 | timer = nil 69 | } 70 | 71 | timer = Timer.scheduledTimer(timeInterval: 1.0, target: self, selector: #selector(updateCountdown), userInfo: nil, repeats: true) 72 | } 73 | 74 | private func stopCountdown() { 75 | timer?.invalidate() 76 | timer = nil 77 | updateNormal() 78 | } 79 | 80 | private func updateNormal() { 81 | isEnabled = true 82 | timeLabel.textColor = normalTextColor 83 | timeLabel.text = normalText 84 | } 85 | 86 | private func updateDisabled() { 87 | isEnabled = false 88 | timeLabel.textColor = disabledTextColor 89 | timeLabel.text = disabledText.replacingOccurrences(of: "second", with: "\(second)") 90 | } 91 | 92 | @objc private func updateCountdown() { 93 | second -= 1 94 | if second <= 0 { 95 | countdown = false 96 | } else { 97 | updateDisabled() 98 | } 99 | } 100 | 101 | } 102 | -------------------------------------------------------------------------------- /Example/GSCaptchaButton/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 25 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /Example/GSCaptchaButton.xcodeproj/xcshareddata/xcschemes/GSCaptchaButton-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 67 | 68 | 78 | 80 | 86 | 87 | 88 | 89 | 90 | 91 | 97 | 99 | 105 | 106 | 107 | 108 | 110 | 111 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /Example/GSCaptchaButton/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 37 | 44 | 45 | 46 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-GSCaptchaButton_Example/Pods-GSCaptchaButton_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | function on_error { 7 | echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" 8 | } 9 | trap 'on_error $LINENO' ERR 10 | 11 | if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then 12 | # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy 13 | # frameworks to, so exit 0 (signalling the script phase was successful). 14 | exit 0 15 | fi 16 | 17 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 18 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 19 | 20 | COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" 21 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 22 | 23 | # Used as a return value for each invocation of `strip_invalid_archs` function. 24 | STRIP_BINARY_RETVAL=0 25 | 26 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 27 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 28 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 29 | 30 | # Copies and strips a vendored framework 31 | install_framework() 32 | { 33 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 34 | local source="${BUILT_PRODUCTS_DIR}/$1" 35 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 36 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 37 | elif [ -r "$1" ]; then 38 | local source="$1" 39 | fi 40 | 41 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 42 | 43 | if [ -L "${source}" ]; then 44 | echo "Symlinked..." 45 | source="$(readlink "${source}")" 46 | fi 47 | 48 | # Use filter instead of exclude so missing patterns don't throw errors. 49 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 50 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 51 | 52 | local basename 53 | basename="$(basename -s .framework "$1")" 54 | binary="${destination}/${basename}.framework/${basename}" 55 | 56 | if ! [ -r "$binary" ]; then 57 | binary="${destination}/${basename}" 58 | elif [ -L "${binary}" ]; then 59 | echo "Destination binary is symlinked..." 60 | dirname="$(dirname "${binary}")" 61 | binary="${dirname}/$(readlink "${binary}")" 62 | fi 63 | 64 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 65 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 66 | strip_invalid_archs "$binary" 67 | fi 68 | 69 | # Resign the code if required by the build settings to avoid unstable apps 70 | code_sign_if_enabled "${destination}/$(basename "$1")" 71 | 72 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 73 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 74 | local swift_runtime_libs 75 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u) 76 | for lib in $swift_runtime_libs; do 77 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 78 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 79 | code_sign_if_enabled "${destination}/${lib}" 80 | done 81 | fi 82 | } 83 | 84 | # Copies and strips a vendored dSYM 85 | install_dsym() { 86 | local source="$1" 87 | if [ -r "$source" ]; then 88 | # Copy the dSYM into a the targets temp dir. 89 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" 90 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" 91 | 92 | local basename 93 | basename="$(basename -s .framework.dSYM "$source")" 94 | binary="${DERIVED_FILES_DIR}/${basename}.framework.dSYM/Contents/Resources/DWARF/${basename}" 95 | 96 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 97 | if [[ "$(file "$binary")" == *"Mach-O "*"dSYM companion"* ]]; then 98 | strip_invalid_archs "$binary" 99 | fi 100 | 101 | if [[ $STRIP_BINARY_RETVAL == 1 ]]; then 102 | # Move the stripped file into its final destination. 103 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" 104 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.framework.dSYM" "${DWARF_DSYM_FOLDER_PATH}" 105 | else 106 | # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. 107 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.framework.dSYM" 108 | fi 109 | fi 110 | } 111 | 112 | # Copies the bcsymbolmap files of a vendored framework 113 | install_bcsymbolmap() { 114 | local bcsymbolmap_path="$1" 115 | local destination="${BUILT_PRODUCTS_DIR}" 116 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}"" 117 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}" 118 | } 119 | 120 | # Signs a framework with the provided identity 121 | code_sign_if_enabled() { 122 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 123 | # Use the current code_sign_identity 124 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 125 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 126 | 127 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 128 | code_sign_cmd="$code_sign_cmd &" 129 | fi 130 | echo "$code_sign_cmd" 131 | eval "$code_sign_cmd" 132 | fi 133 | } 134 | 135 | # Strip invalid architectures 136 | strip_invalid_archs() { 137 | binary="$1" 138 | # Get architectures for current target binary 139 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 140 | # Intersect them with the architectures we are building for 141 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 142 | # If there are no archs supported by this binary then warn the user 143 | if [[ -z "$intersected_archs" ]]; then 144 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 145 | STRIP_BINARY_RETVAL=0 146 | return 147 | fi 148 | stripped="" 149 | for arch in $binary_archs; do 150 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 151 | # Strip non-valid architectures in-place 152 | lipo -remove "$arch" -output "$binary" "$binary" 153 | stripped="$stripped $arch" 154 | fi 155 | done 156 | if [[ "$stripped" ]]; then 157 | echo "Stripped $binary of architectures:$stripped" 158 | fi 159 | STRIP_BINARY_RETVAL=1 160 | } 161 | 162 | 163 | if [[ "$CONFIGURATION" == "Debug" ]]; then 164 | install_framework "${BUILT_PRODUCTS_DIR}/GSCaptchaButton/GSCaptchaButton.framework" 165 | fi 166 | if [[ "$CONFIGURATION" == "Release" ]]; then 167 | install_framework "${BUILT_PRODUCTS_DIR}/GSCaptchaButton/GSCaptchaButton.framework" 168 | fi 169 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 170 | wait 171 | fi 172 | -------------------------------------------------------------------------------- /Example/GSCaptchaButton.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 11 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 12 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 13 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 14 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 15 | B5429F353989001A7541248D /* Pods_GSCaptchaButton_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F5931C9FA4B2F52E70C00FD9 /* Pods_GSCaptchaButton_Example.framework */; }; 16 | /* End PBXBuildFile section */ 17 | 18 | /* Begin PBXFileReference section */ 19 | 119B50539708C68A79870C0F /* Pods_GSCaptchaButton_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_GSCaptchaButton_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 20 | 2AFDE84CAAE7910E35664F7D /* Pods-GSCaptchaButton_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-GSCaptchaButton_Tests.debug.xcconfig"; path = "Target Support Files/Pods-GSCaptchaButton_Tests/Pods-GSCaptchaButton_Tests.debug.xcconfig"; sourceTree = ""; }; 21 | 4950B52A09D643C4CA9EBDEC /* Pods-GSCaptchaButton_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-GSCaptchaButton_Tests.release.xcconfig"; path = "Target Support Files/Pods-GSCaptchaButton_Tests/Pods-GSCaptchaButton_Tests.release.xcconfig"; sourceTree = ""; }; 22 | 5195B58045964752D0EDD84F /* Pods-GSCaptchaButton_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-GSCaptchaButton_Example.debug.xcconfig"; path = "Target Support Files/Pods-GSCaptchaButton_Example/Pods-GSCaptchaButton_Example.debug.xcconfig"; sourceTree = ""; }; 23 | 607FACD01AFB9204008FA782 /* GSCaptchaButton_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = GSCaptchaButton_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 24 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 25 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 26 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 27 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 28 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 29 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 30 | A55621809C02E4D9DEF15312 /* Pods-GSCaptchaButton_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-GSCaptchaButton_Example.release.xcconfig"; path = "Target Support Files/Pods-GSCaptchaButton_Example/Pods-GSCaptchaButton_Example.release.xcconfig"; sourceTree = ""; }; 31 | B822B40DAA2E6610D8E5B5E4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 32 | C6423640A21D04B0EF39EDEB /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 33 | EC83408EDD633313695AF25D /* GSCaptchaButton.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = GSCaptchaButton.podspec; path = ../GSCaptchaButton.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 34 | F5931C9FA4B2F52E70C00FD9 /* Pods_GSCaptchaButton_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_GSCaptchaButton_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 35 | /* End PBXFileReference section */ 36 | 37 | /* Begin PBXFrameworksBuildPhase section */ 38 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 39 | isa = PBXFrameworksBuildPhase; 40 | buildActionMask = 2147483647; 41 | files = ( 42 | B5429F353989001A7541248D /* Pods_GSCaptchaButton_Example.framework in Frameworks */, 43 | ); 44 | runOnlyForDeploymentPostprocessing = 0; 45 | }; 46 | /* End PBXFrameworksBuildPhase section */ 47 | 48 | /* Begin PBXGroup section */ 49 | 1E4EC871E2294472C41C1DB3 /* Pods */ = { 50 | isa = PBXGroup; 51 | children = ( 52 | 5195B58045964752D0EDD84F /* Pods-GSCaptchaButton_Example.debug.xcconfig */, 53 | A55621809C02E4D9DEF15312 /* Pods-GSCaptchaButton_Example.release.xcconfig */, 54 | 2AFDE84CAAE7910E35664F7D /* Pods-GSCaptchaButton_Tests.debug.xcconfig */, 55 | 4950B52A09D643C4CA9EBDEC /* Pods-GSCaptchaButton_Tests.release.xcconfig */, 56 | ); 57 | path = Pods; 58 | sourceTree = ""; 59 | }; 60 | 607FACC71AFB9204008FA782 = { 61 | isa = PBXGroup; 62 | children = ( 63 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 64 | 607FACD21AFB9204008FA782 /* Example for GSCaptchaButton */, 65 | 607FACD11AFB9204008FA782 /* Products */, 66 | 1E4EC871E2294472C41C1DB3 /* Pods */, 67 | AF7BF03E887694A5829452BC /* Frameworks */, 68 | ); 69 | sourceTree = ""; 70 | }; 71 | 607FACD11AFB9204008FA782 /* Products */ = { 72 | isa = PBXGroup; 73 | children = ( 74 | 607FACD01AFB9204008FA782 /* GSCaptchaButton_Example.app */, 75 | ); 76 | name = Products; 77 | sourceTree = ""; 78 | }; 79 | 607FACD21AFB9204008FA782 /* Example for GSCaptchaButton */ = { 80 | isa = PBXGroup; 81 | children = ( 82 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 83 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 84 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 85 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 86 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 87 | 607FACD31AFB9204008FA782 /* Supporting Files */, 88 | ); 89 | name = "Example for GSCaptchaButton"; 90 | path = GSCaptchaButton; 91 | sourceTree = ""; 92 | }; 93 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 94 | isa = PBXGroup; 95 | children = ( 96 | 607FACD41AFB9204008FA782 /* Info.plist */, 97 | ); 98 | name = "Supporting Files"; 99 | sourceTree = ""; 100 | }; 101 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 102 | isa = PBXGroup; 103 | children = ( 104 | EC83408EDD633313695AF25D /* GSCaptchaButton.podspec */, 105 | C6423640A21D04B0EF39EDEB /* README.md */, 106 | B822B40DAA2E6610D8E5B5E4 /* LICENSE */, 107 | ); 108 | name = "Podspec Metadata"; 109 | sourceTree = ""; 110 | }; 111 | AF7BF03E887694A5829452BC /* Frameworks */ = { 112 | isa = PBXGroup; 113 | children = ( 114 | F5931C9FA4B2F52E70C00FD9 /* Pods_GSCaptchaButton_Example.framework */, 115 | 119B50539708C68A79870C0F /* Pods_GSCaptchaButton_Tests.framework */, 116 | ); 117 | name = Frameworks; 118 | sourceTree = ""; 119 | }; 120 | /* End PBXGroup section */ 121 | 122 | /* Begin PBXNativeTarget section */ 123 | 607FACCF1AFB9204008FA782 /* GSCaptchaButton_Example */ = { 124 | isa = PBXNativeTarget; 125 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "GSCaptchaButton_Example" */; 126 | buildPhases = ( 127 | F2BA4E610785D6C18A47DE8B /* [CP] Check Pods Manifest.lock */, 128 | 607FACCC1AFB9204008FA782 /* Sources */, 129 | 607FACCD1AFB9204008FA782 /* Frameworks */, 130 | 607FACCE1AFB9204008FA782 /* Resources */, 131 | F2F2C518D1080A457850C302 /* [CP] Embed Pods Frameworks */, 132 | ); 133 | buildRules = ( 134 | ); 135 | dependencies = ( 136 | ); 137 | name = GSCaptchaButton_Example; 138 | productName = GSCaptchaButton; 139 | productReference = 607FACD01AFB9204008FA782 /* GSCaptchaButton_Example.app */; 140 | productType = "com.apple.product-type.application"; 141 | }; 142 | /* End PBXNativeTarget section */ 143 | 144 | /* Begin PBXProject section */ 145 | 607FACC81AFB9204008FA782 /* Project object */ = { 146 | isa = PBXProject; 147 | attributes = { 148 | LastSwiftUpdateCheck = 0830; 149 | LastUpgradeCheck = 1030; 150 | ORGANIZATIONNAME = CocoaPods; 151 | TargetAttributes = { 152 | 607FACCF1AFB9204008FA782 = { 153 | CreatedOnToolsVersion = 6.3.1; 154 | LastSwiftMigration = 1010; 155 | }; 156 | }; 157 | }; 158 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "GSCaptchaButton" */; 159 | compatibilityVersion = "Xcode 3.2"; 160 | developmentRegion = English; 161 | hasScannedForEncodings = 0; 162 | knownRegions = ( 163 | English, 164 | en, 165 | Base, 166 | ); 167 | mainGroup = 607FACC71AFB9204008FA782; 168 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 169 | projectDirPath = ""; 170 | projectRoot = ""; 171 | targets = ( 172 | 607FACCF1AFB9204008FA782 /* GSCaptchaButton_Example */, 173 | ); 174 | }; 175 | /* End PBXProject section */ 176 | 177 | /* Begin PBXResourcesBuildPhase section */ 178 | 607FACCE1AFB9204008FA782 /* Resources */ = { 179 | isa = PBXResourcesBuildPhase; 180 | buildActionMask = 2147483647; 181 | files = ( 182 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 183 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 184 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 185 | ); 186 | runOnlyForDeploymentPostprocessing = 0; 187 | }; 188 | /* End PBXResourcesBuildPhase section */ 189 | 190 | /* Begin PBXShellScriptBuildPhase section */ 191 | F2BA4E610785D6C18A47DE8B /* [CP] Check Pods Manifest.lock */ = { 192 | isa = PBXShellScriptBuildPhase; 193 | buildActionMask = 2147483647; 194 | files = ( 195 | ); 196 | inputFileListPaths = ( 197 | ); 198 | inputPaths = ( 199 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 200 | "${PODS_ROOT}/Manifest.lock", 201 | ); 202 | name = "[CP] Check Pods Manifest.lock"; 203 | outputFileListPaths = ( 204 | ); 205 | outputPaths = ( 206 | "$(DERIVED_FILE_DIR)/Pods-GSCaptchaButton_Example-checkManifestLockResult.txt", 207 | ); 208 | runOnlyForDeploymentPostprocessing = 0; 209 | shellPath = /bin/sh; 210 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 211 | showEnvVarsInLog = 0; 212 | }; 213 | F2F2C518D1080A457850C302 /* [CP] Embed Pods Frameworks */ = { 214 | isa = PBXShellScriptBuildPhase; 215 | buildActionMask = 2147483647; 216 | files = ( 217 | ); 218 | inputPaths = ( 219 | "${PODS_ROOT}/Target Support Files/Pods-GSCaptchaButton_Example/Pods-GSCaptchaButton_Example-frameworks.sh", 220 | "${BUILT_PRODUCTS_DIR}/GSCaptchaButton/GSCaptchaButton.framework", 221 | ); 222 | name = "[CP] Embed Pods Frameworks"; 223 | outputPaths = ( 224 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/GSCaptchaButton.framework", 225 | ); 226 | runOnlyForDeploymentPostprocessing = 0; 227 | shellPath = /bin/sh; 228 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-GSCaptchaButton_Example/Pods-GSCaptchaButton_Example-frameworks.sh\"\n"; 229 | showEnvVarsInLog = 0; 230 | }; 231 | /* End PBXShellScriptBuildPhase section */ 232 | 233 | /* Begin PBXSourcesBuildPhase section */ 234 | 607FACCC1AFB9204008FA782 /* Sources */ = { 235 | isa = PBXSourcesBuildPhase; 236 | buildActionMask = 2147483647; 237 | files = ( 238 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 239 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 240 | ); 241 | runOnlyForDeploymentPostprocessing = 0; 242 | }; 243 | /* End PBXSourcesBuildPhase section */ 244 | 245 | /* Begin PBXVariantGroup section */ 246 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 247 | isa = PBXVariantGroup; 248 | children = ( 249 | 607FACDA1AFB9204008FA782 /* Base */, 250 | ); 251 | name = Main.storyboard; 252 | sourceTree = ""; 253 | }; 254 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 255 | isa = PBXVariantGroup; 256 | children = ( 257 | 607FACDF1AFB9204008FA782 /* Base */, 258 | ); 259 | name = LaunchScreen.xib; 260 | sourceTree = ""; 261 | }; 262 | /* End PBXVariantGroup section */ 263 | 264 | /* Begin XCBuildConfiguration section */ 265 | 607FACED1AFB9204008FA782 /* Debug */ = { 266 | isa = XCBuildConfiguration; 267 | buildSettings = { 268 | ALWAYS_SEARCH_USER_PATHS = NO; 269 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 270 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 271 | CLANG_CXX_LIBRARY = "libc++"; 272 | CLANG_ENABLE_MODULES = YES; 273 | CLANG_ENABLE_OBJC_ARC = YES; 274 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 275 | CLANG_WARN_BOOL_CONVERSION = YES; 276 | CLANG_WARN_COMMA = YES; 277 | CLANG_WARN_CONSTANT_CONVERSION = YES; 278 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 279 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 280 | CLANG_WARN_EMPTY_BODY = YES; 281 | CLANG_WARN_ENUM_CONVERSION = YES; 282 | CLANG_WARN_INFINITE_RECURSION = YES; 283 | CLANG_WARN_INT_CONVERSION = YES; 284 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 285 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 286 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 287 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 288 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 289 | CLANG_WARN_STRICT_PROTOTYPES = YES; 290 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 291 | CLANG_WARN_UNREACHABLE_CODE = YES; 292 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 293 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 294 | COPY_PHASE_STRIP = NO; 295 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 296 | ENABLE_STRICT_OBJC_MSGSEND = YES; 297 | ENABLE_TESTABILITY = YES; 298 | GCC_C_LANGUAGE_STANDARD = gnu99; 299 | GCC_DYNAMIC_NO_PIC = NO; 300 | GCC_NO_COMMON_BLOCKS = YES; 301 | GCC_OPTIMIZATION_LEVEL = 0; 302 | GCC_PREPROCESSOR_DEFINITIONS = ( 303 | "DEBUG=1", 304 | "$(inherited)", 305 | ); 306 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 307 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 308 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 309 | GCC_WARN_UNDECLARED_SELECTOR = YES; 310 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 311 | GCC_WARN_UNUSED_FUNCTION = YES; 312 | GCC_WARN_UNUSED_VARIABLE = YES; 313 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 314 | MTL_ENABLE_DEBUG_INFO = YES; 315 | ONLY_ACTIVE_ARCH = YES; 316 | SDKROOT = iphoneos; 317 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 318 | }; 319 | name = Debug; 320 | }; 321 | 607FACEE1AFB9204008FA782 /* Release */ = { 322 | isa = XCBuildConfiguration; 323 | buildSettings = { 324 | ALWAYS_SEARCH_USER_PATHS = NO; 325 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 326 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 327 | CLANG_CXX_LIBRARY = "libc++"; 328 | CLANG_ENABLE_MODULES = YES; 329 | CLANG_ENABLE_OBJC_ARC = YES; 330 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 331 | CLANG_WARN_BOOL_CONVERSION = YES; 332 | CLANG_WARN_COMMA = YES; 333 | CLANG_WARN_CONSTANT_CONVERSION = YES; 334 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 335 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 336 | CLANG_WARN_EMPTY_BODY = YES; 337 | CLANG_WARN_ENUM_CONVERSION = YES; 338 | CLANG_WARN_INFINITE_RECURSION = YES; 339 | CLANG_WARN_INT_CONVERSION = YES; 340 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 341 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 342 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 343 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 344 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 345 | CLANG_WARN_STRICT_PROTOTYPES = YES; 346 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 347 | CLANG_WARN_UNREACHABLE_CODE = YES; 348 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 349 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 350 | COPY_PHASE_STRIP = NO; 351 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 352 | ENABLE_NS_ASSERTIONS = NO; 353 | ENABLE_STRICT_OBJC_MSGSEND = YES; 354 | GCC_C_LANGUAGE_STANDARD = gnu99; 355 | GCC_NO_COMMON_BLOCKS = YES; 356 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 357 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 358 | GCC_WARN_UNDECLARED_SELECTOR = YES; 359 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 360 | GCC_WARN_UNUSED_FUNCTION = YES; 361 | GCC_WARN_UNUSED_VARIABLE = YES; 362 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 363 | MTL_ENABLE_DEBUG_INFO = NO; 364 | SDKROOT = iphoneos; 365 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 366 | VALIDATE_PRODUCT = YES; 367 | }; 368 | name = Release; 369 | }; 370 | 607FACF01AFB9204008FA782 /* Debug */ = { 371 | isa = XCBuildConfiguration; 372 | baseConfigurationReference = 5195B58045964752D0EDD84F /* Pods-GSCaptchaButton_Example.debug.xcconfig */; 373 | buildSettings = { 374 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 375 | INFOPLIST_FILE = GSCaptchaButton/Info.plist; 376 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 377 | MODULE_NAME = ExampleApp; 378 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 379 | PRODUCT_NAME = "$(TARGET_NAME)"; 380 | SWIFT_VERSION = 5.0; 381 | }; 382 | name = Debug; 383 | }; 384 | 607FACF11AFB9204008FA782 /* Release */ = { 385 | isa = XCBuildConfiguration; 386 | baseConfigurationReference = A55621809C02E4D9DEF15312 /* Pods-GSCaptchaButton_Example.release.xcconfig */; 387 | buildSettings = { 388 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 389 | INFOPLIST_FILE = GSCaptchaButton/Info.plist; 390 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 391 | MODULE_NAME = ExampleApp; 392 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 393 | PRODUCT_NAME = "$(TARGET_NAME)"; 394 | SWIFT_VERSION = 5.0; 395 | }; 396 | name = Release; 397 | }; 398 | /* End XCBuildConfiguration section */ 399 | 400 | /* Begin XCConfigurationList section */ 401 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "GSCaptchaButton" */ = { 402 | isa = XCConfigurationList; 403 | buildConfigurations = ( 404 | 607FACED1AFB9204008FA782 /* Debug */, 405 | 607FACEE1AFB9204008FA782 /* Release */, 406 | ); 407 | defaultConfigurationIsVisible = 0; 408 | defaultConfigurationName = Release; 409 | }; 410 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "GSCaptchaButton_Example" */ = { 411 | isa = XCConfigurationList; 412 | buildConfigurations = ( 413 | 607FACF01AFB9204008FA782 /* Debug */, 414 | 607FACF11AFB9204008FA782 /* Release */, 415 | ); 416 | defaultConfigurationIsVisible = 0; 417 | defaultConfigurationName = Release; 418 | }; 419 | /* End XCConfigurationList section */ 420 | }; 421 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 422 | } 423 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 03E682EFA1A8F366D66481A831421A28 /* GSCaptchaButton-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 16D6555580DB19E5720CC894E6DC3D8D /* GSCaptchaButton-dummy.m */; }; 11 | 303A25A8C6845F274161275DFA96E0F1 /* GSCaptchaButton-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 49326C6B15695FDBA342027FAECB2163 /* GSCaptchaButton-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 12 | 30567034D50BD19DA1508C673039863C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 13 | 673BBB71EA62A0A3C19ED94C143A64F8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 14 | AADB39AAB3291366E82A8368BDE61890 /* GSCaptchaButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4E12FA80577CA32D600C5CCA76986E1 /* GSCaptchaButton.swift */; }; 15 | D5BE02477FEA28821FAF9C073EFA9CD0 /* Pods-GSCaptchaButton_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D93EBF612C0FEE84E594A148BA09DDF /* Pods-GSCaptchaButton_Example-dummy.m */; }; 16 | D6B3825EA74D1F834FE3C66F598A819D /* Pods-GSCaptchaButton_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 920AB9582ECE7BDC763C62FF8E9AD969 /* Pods-GSCaptchaButton_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 17 | /* End PBXBuildFile section */ 18 | 19 | /* Begin PBXContainerItemProxy section */ 20 | 76A2CCBD1016896CC6A7527458470ECC /* PBXContainerItemProxy */ = { 21 | isa = PBXContainerItemProxy; 22 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 23 | proxyType = 1; 24 | remoteGlobalIDString = B0FEEAB50AC8B4D66668AF6677C22E4B; 25 | remoteInfo = GSCaptchaButton; 26 | }; 27 | /* End PBXContainerItemProxy section */ 28 | 29 | /* Begin PBXFileReference section */ 30 | 0E4E85DAD4265F8495D7CF591D9242A5 /* Pods-GSCaptchaButton_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-GSCaptchaButton_Example-acknowledgements.markdown"; sourceTree = ""; }; 31 | 16D6555580DB19E5720CC894E6DC3D8D /* GSCaptchaButton-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GSCaptchaButton-dummy.m"; sourceTree = ""; }; 32 | 24B0F1CDA8898154BC2D39B46C4A2336 /* Pods-GSCaptchaButton_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-GSCaptchaButton_Example.debug.xcconfig"; sourceTree = ""; }; 33 | 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 34 | 38658C22FA420E0C61938946EE886481 /* GSCaptchaButton.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GSCaptchaButton.xcconfig; sourceTree = ""; }; 35 | 3D93EBF612C0FEE84E594A148BA09DDF /* Pods-GSCaptchaButton_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-GSCaptchaButton_Example-dummy.m"; sourceTree = ""; }; 36 | 49326C6B15695FDBA342027FAECB2163 /* GSCaptchaButton-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GSCaptchaButton-umbrella.h"; sourceTree = ""; }; 37 | 6AB5A682F706A40FCE6373F5F701B43B /* Pods-GSCaptchaButton_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-GSCaptchaButton_Example-acknowledgements.plist"; sourceTree = ""; }; 38 | 6C9F19CD4D7D7A36509A94BAE7F936F8 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 39 | 84894B96E9BAA8061761FD440480543E /* Pods-GSCaptchaButton_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-GSCaptchaButton_Example-Info.plist"; sourceTree = ""; }; 40 | 920AB9582ECE7BDC763C62FF8E9AD969 /* Pods-GSCaptchaButton_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-GSCaptchaButton_Example-umbrella.h"; sourceTree = ""; }; 41 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 42 | AE22A948FAD5FDF64A719F7CA2FA2ABF /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 43 | B154C45D7B2CBC97E3B5BD6C398E7A77 /* GSCaptchaButton-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GSCaptchaButton-prefix.pch"; sourceTree = ""; }; 44 | B21C6C040A80D273A3159D12079245D1 /* GSCaptchaButton-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "GSCaptchaButton-Info.plist"; sourceTree = ""; }; 45 | C88A49B11AF4D352F899DCA031EFED46 /* Pods-GSCaptchaButton_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-GSCaptchaButton_Example.modulemap"; sourceTree = ""; }; 46 | C9DD668D335B144ECAB226FD12BF4AE4 /* Pods_GSCaptchaButton_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_GSCaptchaButton_Example.framework; path = "Pods-GSCaptchaButton_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 47 | CB0E0A488EE8C2293608A4CB522CDBA8 /* Pods-GSCaptchaButton_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-GSCaptchaButton_Example.release.xcconfig"; sourceTree = ""; }; 48 | D7BC2BE50C178CB26C87CA01FB4AAE64 /* GSCaptchaButton.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GSCaptchaButton.modulemap; sourceTree = ""; }; 49 | DF7033CAE208B8B39F8F29DF47120A19 /* GSCaptchaButton.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = GSCaptchaButton.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 50 | E4E12FA80577CA32D600C5CCA76986E1 /* GSCaptchaButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GSCaptchaButton.swift; path = GSCaptchaButton/Classes/GSCaptchaButton.swift; sourceTree = ""; }; 51 | F8CBD88222FE280EFB45B2456F6C0FD0 /* GSCaptchaButton.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GSCaptchaButton.framework; path = GSCaptchaButton.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 52 | F8E0FDBB7B420068CE38E8B825F6BA9F /* Pods-GSCaptchaButton_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-GSCaptchaButton_Example-frameworks.sh"; sourceTree = ""; }; 53 | /* End PBXFileReference section */ 54 | 55 | /* Begin PBXFrameworksBuildPhase section */ 56 | 70831A24A3FAE16D80190EC0ADB9A0D1 /* Frameworks */ = { 57 | isa = PBXFrameworksBuildPhase; 58 | buildActionMask = 2147483647; 59 | files = ( 60 | 673BBB71EA62A0A3C19ED94C143A64F8 /* Foundation.framework in Frameworks */, 61 | ); 62 | runOnlyForDeploymentPostprocessing = 0; 63 | }; 64 | EE57C34B91C3B4BB919BC7B9F8A87932 /* Frameworks */ = { 65 | isa = PBXFrameworksBuildPhase; 66 | buildActionMask = 2147483647; 67 | files = ( 68 | 30567034D50BD19DA1508C673039863C /* Foundation.framework in Frameworks */, 69 | ); 70 | runOnlyForDeploymentPostprocessing = 0; 71 | }; 72 | /* End PBXFrameworksBuildPhase section */ 73 | 74 | /* Begin PBXGroup section */ 75 | 15CFC16930FCBFBDF70E9958093FB87D /* Development Pods */ = { 76 | isa = PBXGroup; 77 | children = ( 78 | D9DFB60B853CB1C46BC0562BA519D604 /* GSCaptchaButton */, 79 | ); 80 | name = "Development Pods"; 81 | sourceTree = ""; 82 | }; 83 | A6621C27880C4E3514FD9697D02C8459 /* Targets Support Files */ = { 84 | isa = PBXGroup; 85 | children = ( 86 | FDE8C5EF6D0E31159BCBC2498472BB3D /* Pods-GSCaptchaButton_Example */, 87 | ); 88 | name = "Targets Support Files"; 89 | sourceTree = ""; 90 | }; 91 | C05C043022B18F59DC8B6988ECBC48D2 /* Pod */ = { 92 | isa = PBXGroup; 93 | children = ( 94 | DF7033CAE208B8B39F8F29DF47120A19 /* GSCaptchaButton.podspec */, 95 | 6C9F19CD4D7D7A36509A94BAE7F936F8 /* LICENSE */, 96 | AE22A948FAD5FDF64A719F7CA2FA2ABF /* README.md */, 97 | ); 98 | name = Pod; 99 | sourceTree = ""; 100 | }; 101 | C0834CEBB1379A84116EF29F93051C60 /* iOS */ = { 102 | isa = PBXGroup; 103 | children = ( 104 | 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */, 105 | ); 106 | name = iOS; 107 | sourceTree = ""; 108 | }; 109 | CF1408CF629C7361332E53B88F7BD30C = { 110 | isa = PBXGroup; 111 | children = ( 112 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, 113 | 15CFC16930FCBFBDF70E9958093FB87D /* Development Pods */, 114 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, 115 | F9C9665D08A0C543014C21076996A392 /* Products */, 116 | A6621C27880C4E3514FD9697D02C8459 /* Targets Support Files */, 117 | ); 118 | sourceTree = ""; 119 | }; 120 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = { 121 | isa = PBXGroup; 122 | children = ( 123 | C0834CEBB1379A84116EF29F93051C60 /* iOS */, 124 | ); 125 | name = Frameworks; 126 | sourceTree = ""; 127 | }; 128 | D9DFB60B853CB1C46BC0562BA519D604 /* GSCaptchaButton */ = { 129 | isa = PBXGroup; 130 | children = ( 131 | E4E12FA80577CA32D600C5CCA76986E1 /* GSCaptchaButton.swift */, 132 | C05C043022B18F59DC8B6988ECBC48D2 /* Pod */, 133 | ED644BB2489F2F12BE2EB1617690F85D /* Support Files */, 134 | ); 135 | name = GSCaptchaButton; 136 | path = ../..; 137 | sourceTree = ""; 138 | }; 139 | ED644BB2489F2F12BE2EB1617690F85D /* Support Files */ = { 140 | isa = PBXGroup; 141 | children = ( 142 | D7BC2BE50C178CB26C87CA01FB4AAE64 /* GSCaptchaButton.modulemap */, 143 | 38658C22FA420E0C61938946EE886481 /* GSCaptchaButton.xcconfig */, 144 | 16D6555580DB19E5720CC894E6DC3D8D /* GSCaptchaButton-dummy.m */, 145 | B21C6C040A80D273A3159D12079245D1 /* GSCaptchaButton-Info.plist */, 146 | B154C45D7B2CBC97E3B5BD6C398E7A77 /* GSCaptchaButton-prefix.pch */, 147 | 49326C6B15695FDBA342027FAECB2163 /* GSCaptchaButton-umbrella.h */, 148 | ); 149 | name = "Support Files"; 150 | path = "Example/Pods/Target Support Files/GSCaptchaButton"; 151 | sourceTree = ""; 152 | }; 153 | F9C9665D08A0C543014C21076996A392 /* Products */ = { 154 | isa = PBXGroup; 155 | children = ( 156 | F8CBD88222FE280EFB45B2456F6C0FD0 /* GSCaptchaButton.framework */, 157 | C9DD668D335B144ECAB226FD12BF4AE4 /* Pods_GSCaptchaButton_Example.framework */, 158 | ); 159 | name = Products; 160 | sourceTree = ""; 161 | }; 162 | FDE8C5EF6D0E31159BCBC2498472BB3D /* Pods-GSCaptchaButton_Example */ = { 163 | isa = PBXGroup; 164 | children = ( 165 | C88A49B11AF4D352F899DCA031EFED46 /* Pods-GSCaptchaButton_Example.modulemap */, 166 | 0E4E85DAD4265F8495D7CF591D9242A5 /* Pods-GSCaptchaButton_Example-acknowledgements.markdown */, 167 | 6AB5A682F706A40FCE6373F5F701B43B /* Pods-GSCaptchaButton_Example-acknowledgements.plist */, 168 | 3D93EBF612C0FEE84E594A148BA09DDF /* Pods-GSCaptchaButton_Example-dummy.m */, 169 | F8E0FDBB7B420068CE38E8B825F6BA9F /* Pods-GSCaptchaButton_Example-frameworks.sh */, 170 | 84894B96E9BAA8061761FD440480543E /* Pods-GSCaptchaButton_Example-Info.plist */, 171 | 920AB9582ECE7BDC763C62FF8E9AD969 /* Pods-GSCaptchaButton_Example-umbrella.h */, 172 | 24B0F1CDA8898154BC2D39B46C4A2336 /* Pods-GSCaptchaButton_Example.debug.xcconfig */, 173 | CB0E0A488EE8C2293608A4CB522CDBA8 /* Pods-GSCaptchaButton_Example.release.xcconfig */, 174 | ); 175 | name = "Pods-GSCaptchaButton_Example"; 176 | path = "Target Support Files/Pods-GSCaptchaButton_Example"; 177 | sourceTree = ""; 178 | }; 179 | /* End PBXGroup section */ 180 | 181 | /* Begin PBXHeadersBuildPhase section */ 182 | 07B10807B74E111BEBFA994CFE0873FE /* Headers */ = { 183 | isa = PBXHeadersBuildPhase; 184 | buildActionMask = 2147483647; 185 | files = ( 186 | 303A25A8C6845F274161275DFA96E0F1 /* GSCaptchaButton-umbrella.h in Headers */, 187 | ); 188 | runOnlyForDeploymentPostprocessing = 0; 189 | }; 190 | C6642AC39C3F13943405E5C9F00A99A0 /* Headers */ = { 191 | isa = PBXHeadersBuildPhase; 192 | buildActionMask = 2147483647; 193 | files = ( 194 | D6B3825EA74D1F834FE3C66F598A819D /* Pods-GSCaptchaButton_Example-umbrella.h in Headers */, 195 | ); 196 | runOnlyForDeploymentPostprocessing = 0; 197 | }; 198 | /* End PBXHeadersBuildPhase section */ 199 | 200 | /* Begin PBXNativeTarget section */ 201 | B0FEEAB50AC8B4D66668AF6677C22E4B /* GSCaptchaButton */ = { 202 | isa = PBXNativeTarget; 203 | buildConfigurationList = C2712D5D1C59F4609A9BAF7F7C9D1A1C /* Build configuration list for PBXNativeTarget "GSCaptchaButton" */; 204 | buildPhases = ( 205 | 07B10807B74E111BEBFA994CFE0873FE /* Headers */, 206 | 623B54D7F5233012D4F4C8B748C5C9D8 /* Sources */, 207 | 70831A24A3FAE16D80190EC0ADB9A0D1 /* Frameworks */, 208 | B9B5731E3D749DE7D0B12967D703696A /* Resources */, 209 | ); 210 | buildRules = ( 211 | ); 212 | dependencies = ( 213 | ); 214 | name = GSCaptchaButton; 215 | productName = GSCaptchaButton; 216 | productReference = F8CBD88222FE280EFB45B2456F6C0FD0 /* GSCaptchaButton.framework */; 217 | productType = "com.apple.product-type.framework"; 218 | }; 219 | B880E28ED4B3237D8F9BCD0AB2F34AF9 /* Pods-GSCaptchaButton_Example */ = { 220 | isa = PBXNativeTarget; 221 | buildConfigurationList = A62EA202AA3A894E0CF5FCF5F238ABB9 /* Build configuration list for PBXNativeTarget "Pods-GSCaptchaButton_Example" */; 222 | buildPhases = ( 223 | C6642AC39C3F13943405E5C9F00A99A0 /* Headers */, 224 | A7D1E1451C161D2476F33BEB11F152BB /* Sources */, 225 | EE57C34B91C3B4BB919BC7B9F8A87932 /* Frameworks */, 226 | E6DD2B7CF298996716E63985B47078A9 /* Resources */, 227 | ); 228 | buildRules = ( 229 | ); 230 | dependencies = ( 231 | FCB783556E0F05B788D8C82125EDCE0A /* PBXTargetDependency */, 232 | ); 233 | name = "Pods-GSCaptchaButton_Example"; 234 | productName = "Pods-GSCaptchaButton_Example"; 235 | productReference = C9DD668D335B144ECAB226FD12BF4AE4 /* Pods_GSCaptchaButton_Example.framework */; 236 | productType = "com.apple.product-type.framework"; 237 | }; 238 | /* End PBXNativeTarget section */ 239 | 240 | /* Begin PBXProject section */ 241 | BFDFE7DC352907FC980B868725387E98 /* Project object */ = { 242 | isa = PBXProject; 243 | attributes = { 244 | LastSwiftUpdateCheck = 1100; 245 | LastUpgradeCheck = 1100; 246 | }; 247 | buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; 248 | compatibilityVersion = "Xcode 3.2"; 249 | developmentRegion = en; 250 | hasScannedForEncodings = 0; 251 | knownRegions = ( 252 | en, 253 | ); 254 | mainGroup = CF1408CF629C7361332E53B88F7BD30C; 255 | productRefGroup = F9C9665D08A0C543014C21076996A392 /* Products */; 256 | projectDirPath = ""; 257 | projectRoot = ""; 258 | targets = ( 259 | B0FEEAB50AC8B4D66668AF6677C22E4B /* GSCaptchaButton */, 260 | B880E28ED4B3237D8F9BCD0AB2F34AF9 /* Pods-GSCaptchaButton_Example */, 261 | ); 262 | }; 263 | /* End PBXProject section */ 264 | 265 | /* Begin PBXResourcesBuildPhase section */ 266 | B9B5731E3D749DE7D0B12967D703696A /* Resources */ = { 267 | isa = PBXResourcesBuildPhase; 268 | buildActionMask = 2147483647; 269 | files = ( 270 | ); 271 | runOnlyForDeploymentPostprocessing = 0; 272 | }; 273 | E6DD2B7CF298996716E63985B47078A9 /* Resources */ = { 274 | isa = PBXResourcesBuildPhase; 275 | buildActionMask = 2147483647; 276 | files = ( 277 | ); 278 | runOnlyForDeploymentPostprocessing = 0; 279 | }; 280 | /* End PBXResourcesBuildPhase section */ 281 | 282 | /* Begin PBXSourcesBuildPhase section */ 283 | 623B54D7F5233012D4F4C8B748C5C9D8 /* Sources */ = { 284 | isa = PBXSourcesBuildPhase; 285 | buildActionMask = 2147483647; 286 | files = ( 287 | 03E682EFA1A8F366D66481A831421A28 /* GSCaptchaButton-dummy.m in Sources */, 288 | AADB39AAB3291366E82A8368BDE61890 /* GSCaptchaButton.swift in Sources */, 289 | ); 290 | runOnlyForDeploymentPostprocessing = 0; 291 | }; 292 | A7D1E1451C161D2476F33BEB11F152BB /* Sources */ = { 293 | isa = PBXSourcesBuildPhase; 294 | buildActionMask = 2147483647; 295 | files = ( 296 | D5BE02477FEA28821FAF9C073EFA9CD0 /* Pods-GSCaptchaButton_Example-dummy.m in Sources */, 297 | ); 298 | runOnlyForDeploymentPostprocessing = 0; 299 | }; 300 | /* End PBXSourcesBuildPhase section */ 301 | 302 | /* Begin PBXTargetDependency section */ 303 | FCB783556E0F05B788D8C82125EDCE0A /* PBXTargetDependency */ = { 304 | isa = PBXTargetDependency; 305 | name = GSCaptchaButton; 306 | target = B0FEEAB50AC8B4D66668AF6677C22E4B /* GSCaptchaButton */; 307 | targetProxy = 76A2CCBD1016896CC6A7527458470ECC /* PBXContainerItemProxy */; 308 | }; 309 | /* End PBXTargetDependency section */ 310 | 311 | /* Begin XCBuildConfiguration section */ 312 | 5E7C41C7282F918927B81D3E6F94995B /* Release */ = { 313 | isa = XCBuildConfiguration; 314 | baseConfigurationReference = CB0E0A488EE8C2293608A4CB522CDBA8 /* Pods-GSCaptchaButton_Example.release.xcconfig */; 315 | buildSettings = { 316 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 317 | CODE_SIGN_IDENTITY = ""; 318 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 319 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 320 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 321 | CURRENT_PROJECT_VERSION = 1; 322 | DEFINES_MODULE = YES; 323 | DYLIB_COMPATIBILITY_VERSION = 1; 324 | DYLIB_CURRENT_VERSION = 1; 325 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 326 | INFOPLIST_FILE = "Target Support Files/Pods-GSCaptchaButton_Example/Pods-GSCaptchaButton_Example-Info.plist"; 327 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 328 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 329 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 330 | MACH_O_TYPE = staticlib; 331 | MODULEMAP_FILE = "Target Support Files/Pods-GSCaptchaButton_Example/Pods-GSCaptchaButton_Example.modulemap"; 332 | OTHER_LDFLAGS = ""; 333 | OTHER_LIBTOOLFLAGS = ""; 334 | PODS_ROOT = "$(SRCROOT)"; 335 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 336 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 337 | SDKROOT = iphoneos; 338 | SKIP_INSTALL = YES; 339 | TARGETED_DEVICE_FAMILY = "1,2"; 340 | VALIDATE_PRODUCT = YES; 341 | VERSIONING_SYSTEM = "apple-generic"; 342 | VERSION_INFO_PREFIX = ""; 343 | }; 344 | name = Release; 345 | }; 346 | 82FF5571C904B51E1CD0C9FC7E4502BB /* Release */ = { 347 | isa = XCBuildConfiguration; 348 | baseConfigurationReference = 38658C22FA420E0C61938946EE886481 /* GSCaptchaButton.xcconfig */; 349 | buildSettings = { 350 | CODE_SIGN_IDENTITY = ""; 351 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 352 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 353 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 354 | CURRENT_PROJECT_VERSION = 1; 355 | DEFINES_MODULE = YES; 356 | DYLIB_COMPATIBILITY_VERSION = 1; 357 | DYLIB_CURRENT_VERSION = 1; 358 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 359 | GCC_PREFIX_HEADER = "Target Support Files/GSCaptchaButton/GSCaptchaButton-prefix.pch"; 360 | INFOPLIST_FILE = "Target Support Files/GSCaptchaButton/GSCaptchaButton-Info.plist"; 361 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 362 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 363 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 364 | MODULEMAP_FILE = "Target Support Files/GSCaptchaButton/GSCaptchaButton.modulemap"; 365 | PRODUCT_MODULE_NAME = GSCaptchaButton; 366 | PRODUCT_NAME = GSCaptchaButton; 367 | SDKROOT = iphoneos; 368 | SKIP_INSTALL = YES; 369 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 370 | SWIFT_VERSION = 5.0; 371 | TARGETED_DEVICE_FAMILY = "1,2"; 372 | VALIDATE_PRODUCT = YES; 373 | VERSIONING_SYSTEM = "apple-generic"; 374 | VERSION_INFO_PREFIX = ""; 375 | }; 376 | name = Release; 377 | }; 378 | 917C8BD5243E92C3A8338599BF5DE933 /* Debug */ = { 379 | isa = XCBuildConfiguration; 380 | baseConfigurationReference = 38658C22FA420E0C61938946EE886481 /* GSCaptchaButton.xcconfig */; 381 | buildSettings = { 382 | CODE_SIGN_IDENTITY = ""; 383 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 384 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 385 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 386 | CURRENT_PROJECT_VERSION = 1; 387 | DEFINES_MODULE = YES; 388 | DYLIB_COMPATIBILITY_VERSION = 1; 389 | DYLIB_CURRENT_VERSION = 1; 390 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 391 | GCC_PREFIX_HEADER = "Target Support Files/GSCaptchaButton/GSCaptchaButton-prefix.pch"; 392 | INFOPLIST_FILE = "Target Support Files/GSCaptchaButton/GSCaptchaButton-Info.plist"; 393 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 394 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 395 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 396 | MODULEMAP_FILE = "Target Support Files/GSCaptchaButton/GSCaptchaButton.modulemap"; 397 | PRODUCT_MODULE_NAME = GSCaptchaButton; 398 | PRODUCT_NAME = GSCaptchaButton; 399 | SDKROOT = iphoneos; 400 | SKIP_INSTALL = YES; 401 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 402 | SWIFT_VERSION = 5.0; 403 | TARGETED_DEVICE_FAMILY = "1,2"; 404 | VERSIONING_SYSTEM = "apple-generic"; 405 | VERSION_INFO_PREFIX = ""; 406 | }; 407 | name = Debug; 408 | }; 409 | B0087CB4594321EF41619F3181FE120E /* Release */ = { 410 | isa = XCBuildConfiguration; 411 | buildSettings = { 412 | ALWAYS_SEARCH_USER_PATHS = NO; 413 | CLANG_ANALYZER_NONNULL = YES; 414 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 415 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 416 | CLANG_CXX_LIBRARY = "libc++"; 417 | CLANG_ENABLE_MODULES = YES; 418 | CLANG_ENABLE_OBJC_ARC = YES; 419 | CLANG_ENABLE_OBJC_WEAK = YES; 420 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 421 | CLANG_WARN_BOOL_CONVERSION = YES; 422 | CLANG_WARN_COMMA = YES; 423 | CLANG_WARN_CONSTANT_CONVERSION = YES; 424 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 425 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 426 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 427 | CLANG_WARN_EMPTY_BODY = YES; 428 | CLANG_WARN_ENUM_CONVERSION = YES; 429 | CLANG_WARN_INFINITE_RECURSION = YES; 430 | CLANG_WARN_INT_CONVERSION = YES; 431 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 432 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 433 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 434 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 435 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 436 | CLANG_WARN_STRICT_PROTOTYPES = YES; 437 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 438 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 439 | CLANG_WARN_UNREACHABLE_CODE = YES; 440 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 441 | COPY_PHASE_STRIP = NO; 442 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 443 | ENABLE_NS_ASSERTIONS = NO; 444 | ENABLE_STRICT_OBJC_MSGSEND = YES; 445 | GCC_C_LANGUAGE_STANDARD = gnu11; 446 | GCC_NO_COMMON_BLOCKS = YES; 447 | GCC_PREPROCESSOR_DEFINITIONS = ( 448 | "POD_CONFIGURATION_RELEASE=1", 449 | "$(inherited)", 450 | ); 451 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 452 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 453 | GCC_WARN_UNDECLARED_SELECTOR = YES; 454 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 455 | GCC_WARN_UNUSED_FUNCTION = YES; 456 | GCC_WARN_UNUSED_VARIABLE = YES; 457 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 458 | MTL_ENABLE_DEBUG_INFO = NO; 459 | MTL_FAST_MATH = YES; 460 | PRODUCT_NAME = "$(TARGET_NAME)"; 461 | STRIP_INSTALLED_PRODUCT = NO; 462 | SWIFT_COMPILATION_MODE = wholemodule; 463 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 464 | SWIFT_VERSION = 5.0; 465 | SYMROOT = "${SRCROOT}/../build"; 466 | }; 467 | name = Release; 468 | }; 469 | B8BCBD0110C2658BB5DAADB9B7D97B92 /* Debug */ = { 470 | isa = XCBuildConfiguration; 471 | buildSettings = { 472 | ALWAYS_SEARCH_USER_PATHS = NO; 473 | CLANG_ANALYZER_NONNULL = YES; 474 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 475 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 476 | CLANG_CXX_LIBRARY = "libc++"; 477 | CLANG_ENABLE_MODULES = YES; 478 | CLANG_ENABLE_OBJC_ARC = YES; 479 | CLANG_ENABLE_OBJC_WEAK = YES; 480 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 481 | CLANG_WARN_BOOL_CONVERSION = YES; 482 | CLANG_WARN_COMMA = YES; 483 | CLANG_WARN_CONSTANT_CONVERSION = YES; 484 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 485 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 486 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 487 | CLANG_WARN_EMPTY_BODY = YES; 488 | CLANG_WARN_ENUM_CONVERSION = YES; 489 | CLANG_WARN_INFINITE_RECURSION = YES; 490 | CLANG_WARN_INT_CONVERSION = YES; 491 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 492 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 493 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 494 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 495 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 496 | CLANG_WARN_STRICT_PROTOTYPES = YES; 497 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 498 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 499 | CLANG_WARN_UNREACHABLE_CODE = YES; 500 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 501 | COPY_PHASE_STRIP = NO; 502 | DEBUG_INFORMATION_FORMAT = dwarf; 503 | ENABLE_STRICT_OBJC_MSGSEND = YES; 504 | ENABLE_TESTABILITY = YES; 505 | GCC_C_LANGUAGE_STANDARD = gnu11; 506 | GCC_DYNAMIC_NO_PIC = NO; 507 | GCC_NO_COMMON_BLOCKS = YES; 508 | GCC_OPTIMIZATION_LEVEL = 0; 509 | GCC_PREPROCESSOR_DEFINITIONS = ( 510 | "POD_CONFIGURATION_DEBUG=1", 511 | "DEBUG=1", 512 | "$(inherited)", 513 | ); 514 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 515 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 516 | GCC_WARN_UNDECLARED_SELECTOR = YES; 517 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 518 | GCC_WARN_UNUSED_FUNCTION = YES; 519 | GCC_WARN_UNUSED_VARIABLE = YES; 520 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 521 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 522 | MTL_FAST_MATH = YES; 523 | ONLY_ACTIVE_ARCH = YES; 524 | PRODUCT_NAME = "$(TARGET_NAME)"; 525 | STRIP_INSTALLED_PRODUCT = NO; 526 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 527 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 528 | SWIFT_VERSION = 5.0; 529 | SYMROOT = "${SRCROOT}/../build"; 530 | }; 531 | name = Debug; 532 | }; 533 | F63724D70865013F89460C6ECE39EDB1 /* Debug */ = { 534 | isa = XCBuildConfiguration; 535 | baseConfigurationReference = 24B0F1CDA8898154BC2D39B46C4A2336 /* Pods-GSCaptchaButton_Example.debug.xcconfig */; 536 | buildSettings = { 537 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 538 | CODE_SIGN_IDENTITY = ""; 539 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 540 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 541 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 542 | CURRENT_PROJECT_VERSION = 1; 543 | DEFINES_MODULE = YES; 544 | DYLIB_COMPATIBILITY_VERSION = 1; 545 | DYLIB_CURRENT_VERSION = 1; 546 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 547 | INFOPLIST_FILE = "Target Support Files/Pods-GSCaptchaButton_Example/Pods-GSCaptchaButton_Example-Info.plist"; 548 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 549 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 550 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 551 | MACH_O_TYPE = staticlib; 552 | MODULEMAP_FILE = "Target Support Files/Pods-GSCaptchaButton_Example/Pods-GSCaptchaButton_Example.modulemap"; 553 | OTHER_LDFLAGS = ""; 554 | OTHER_LIBTOOLFLAGS = ""; 555 | PODS_ROOT = "$(SRCROOT)"; 556 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 557 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 558 | SDKROOT = iphoneos; 559 | SKIP_INSTALL = YES; 560 | TARGETED_DEVICE_FAMILY = "1,2"; 561 | VERSIONING_SYSTEM = "apple-generic"; 562 | VERSION_INFO_PREFIX = ""; 563 | }; 564 | name = Debug; 565 | }; 566 | /* End XCBuildConfiguration section */ 567 | 568 | /* Begin XCConfigurationList section */ 569 | 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { 570 | isa = XCConfigurationList; 571 | buildConfigurations = ( 572 | B8BCBD0110C2658BB5DAADB9B7D97B92 /* Debug */, 573 | B0087CB4594321EF41619F3181FE120E /* Release */, 574 | ); 575 | defaultConfigurationIsVisible = 0; 576 | defaultConfigurationName = Release; 577 | }; 578 | A62EA202AA3A894E0CF5FCF5F238ABB9 /* Build configuration list for PBXNativeTarget "Pods-GSCaptchaButton_Example" */ = { 579 | isa = XCConfigurationList; 580 | buildConfigurations = ( 581 | F63724D70865013F89460C6ECE39EDB1 /* Debug */, 582 | 5E7C41C7282F918927B81D3E6F94995B /* Release */, 583 | ); 584 | defaultConfigurationIsVisible = 0; 585 | defaultConfigurationName = Release; 586 | }; 587 | C2712D5D1C59F4609A9BAF7F7C9D1A1C /* Build configuration list for PBXNativeTarget "GSCaptchaButton" */ = { 588 | isa = XCConfigurationList; 589 | buildConfigurations = ( 590 | 917C8BD5243E92C3A8338599BF5DE933 /* Debug */, 591 | 82FF5571C904B51E1CD0C9FC7E4502BB /* Release */, 592 | ); 593 | defaultConfigurationIsVisible = 0; 594 | defaultConfigurationName = Release; 595 | }; 596 | /* End XCConfigurationList section */ 597 | }; 598 | rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; 599 | } 600 | --------------------------------------------------------------------------------