├── LETimeIntervalPicker ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── LETimeIntervalPicker.swift ├── _Pods.xcodeproj ├── Example ├── Tests │ ├── sv.lproj │ │ └── InfoPlist.strings │ ├── Info.plist │ └── Tests.swift ├── LETimeIntervalPicker │ ├── sv.lproj │ │ ├── InfoPlist.strings │ │ ├── Localizable.strings │ │ ├── LaunchScreen.strings │ │ └── Main.strings │ ├── Base.lproj │ │ ├── Localizable.strings │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── en.lproj │ │ ├── Localizable.strings │ │ └── Main.strings │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.swift │ └── AppDelegate.swift ├── Pods │ ├── Target Support Files │ │ ├── LETimeIntervalPicker │ │ │ ├── sv.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── LETimeIntervalPickerLocalizable.strings │ │ │ ├── LETimeIntervalPicker.modulemap │ │ │ ├── LETimeIntervalPicker-dummy.m │ │ │ ├── LETimeIntervalPicker-prefix.pch │ │ │ ├── LETimeIntervalPicker-umbrella.h │ │ │ ├── LETimeIntervalPicker.xcconfig │ │ │ ├── Info.plist │ │ │ └── en.lproj │ │ │ │ └── LETimeIntervalPickerLocalizable.strings │ │ ├── Pods-LETimeIntervalPicker_Tests │ │ │ ├── sv.lproj │ │ │ │ └── InfoPlist.strings │ │ │ ├── Pods-LETimeIntervalPicker_Tests-acknowledgements.markdown │ │ │ ├── Pods-LETimeIntervalPicker_Tests.modulemap │ │ │ ├── Pods-LETimeIntervalPicker_Tests-dummy.m │ │ │ ├── Pods-LETimeIntervalPicker_Tests-umbrella.h │ │ │ ├── Pods-LETimeIntervalPicker_Tests.debug.xcconfig │ │ │ ├── Pods-LETimeIntervalPicker_Tests.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-LETimeIntervalPicker_Tests-acknowledgements.plist │ │ │ ├── Pods-LETimeIntervalPicker_Tests-frameworks.sh │ │ │ └── Pods-LETimeIntervalPicker_Tests-resources.sh │ │ └── Pods-LETimeIntervalPicker_Example │ │ │ ├── sv.lproj │ │ │ └── InfoPlist.strings │ │ │ ├── Pods-LETimeIntervalPicker_Example.modulemap │ │ │ ├── Pods-LETimeIntervalPicker_Example-dummy.m │ │ │ ├── Pods-LETimeIntervalPicker_Example-umbrella.h │ │ │ ├── Pods-LETimeIntervalPicker_Example.debug.xcconfig │ │ │ ├── Pods-LETimeIntervalPicker_Example.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-LETimeIntervalPicker_Example-acknowledgements.markdown │ │ │ ├── Pods-LETimeIntervalPicker_Example-acknowledgements.plist │ │ │ ├── Pods-LETimeIntervalPicker_Example-frameworks.sh │ │ │ └── Pods-LETimeIntervalPicker_Example-resources.sh │ ├── Manifest.lock │ ├── Local Podspecs │ │ └── LETimeIntervalPicker.podspec.json │ └── Pods.xcodeproj │ │ └── project.pbxproj ├── Podfile ├── LETimeIntervalPicker.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── LETimeIntervalPicker-Example.xcscheme │ └── project.pbxproj ├── LETimeIntervalPicker.xcworkspace │ └── contents.xcworkspacedata └── Podfile.lock ├── .travis.yml ├── .gitignore ├── README.md ├── LICENSE └── LETimeIntervalPicker.podspec /LETimeIntervalPicker/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LETimeIntervalPicker/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /Example/Tests/sv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /Example/LETimeIntervalPicker/sv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /Example/LETimeIntervalPicker/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* No comment provided by engineer. */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LETimeIntervalPicker/sv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /Example/LETimeIntervalPicker/Base.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* No comment provided by engineer. */ 2 | 3 | 4 | -------------------------------------------------------------------------------- /Example/LETimeIntervalPicker/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* No comment provided by engineer. */ 2 | 3 | 4 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LETimeIntervalPicker_Tests/sv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LETimeIntervalPicker_Example/sv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* No Localized Strings */ -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LETimeIntervalPicker/LETimeIntervalPicker.modulemap: -------------------------------------------------------------------------------- 1 | framework module LETimeIntervalPicker { 2 | umbrella header "LETimeIntervalPicker-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LETimeIntervalPicker/LETimeIntervalPicker-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_LETimeIntervalPicker : NSObject 3 | @end 4 | @implementation PodsDummy_LETimeIntervalPicker 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'LETimeIntervalPicker_Example' do 4 | pod 'LETimeIntervalPicker', :path => '../' 5 | 6 | target 'LETimeIntervalPicker_Tests' do 7 | inherit! :search_paths 8 | 9 | 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LETimeIntervalPicker_Tests/Pods-LETimeIntervalPicker_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Example/LETimeIntervalPicker.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LETimeIntervalPicker_Tests/Pods-LETimeIntervalPicker_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_LETimeIntervalPicker_Tests { 2 | umbrella header "Pods-LETimeIntervalPicker_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LETimeIntervalPicker_Example/Pods-LETimeIntervalPicker_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_LETimeIntervalPicker_Example { 2 | umbrella header "Pods-LETimeIntervalPicker_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LETimeIntervalPicker_Tests/Pods-LETimeIntervalPicker_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_LETimeIntervalPicker_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_LETimeIntervalPicker_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LETimeIntervalPicker_Example/Pods-LETimeIntervalPicker_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_LETimeIntervalPicker_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_LETimeIntervalPicker_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LETimeIntervalPicker/LETimeIntervalPicker-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/LETimeIntervalPicker.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/LETimeIntervalPicker/sv.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = " Copyright (c) 2017 Ludvig Eriksson. All rights reserved."; ObjectID = "8ie-xW-0ye"; */ 2 | "8ie-xW-0ye.text" = " Copyright (c) 2017 Ludvig Eriksson. All rights reserved."; 3 | 4 | /* Class = "UILabel"; text = "LETimeIntervalPicker"; ObjectID = "kId-c2-rCX"; */ 5 | "kId-c2-rCX.text" = "LETimeIntervalPicker"; 6 | 7 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - LETimeIntervalPicker (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - LETimeIntervalPicker (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | LETimeIntervalPicker: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | LETimeIntervalPicker: 12aab8537041214794b0362b876cf3932077310c 13 | 14 | PODFILE CHECKSUM: eb27de8ae101ad9e39b6d61e9b19ec266eb6a748 15 | 16 | COCOAPODS: 1.2.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - LETimeIntervalPicker (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - LETimeIntervalPicker (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | LETimeIntervalPicker: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | LETimeIntervalPicker: 12aab8537041214794b0362b876cf3932077310c 13 | 14 | PODFILE CHECKSUM: eb27de8ae101ad9e39b6d61e9b19ec266eb6a748 15 | 16 | COCOAPODS: 1.2.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LETimeIntervalPicker/LETimeIntervalPicker-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 LETimeIntervalPickerVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char LETimeIntervalPickerVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LETimeIntervalPicker_Tests/Pods-LETimeIntervalPicker_Tests-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_LETimeIntervalPicker_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_LETimeIntervalPicker_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LETimeIntervalPicker_Example/Pods-LETimeIntervalPicker_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_LETimeIntervalPicker_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_LETimeIntervalPicker_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * http://www.objc.io/issue-6/travis-ci.html 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | osx_image: xcode8.3 6 | language: swift 7 | # cache: cocoapods 8 | # podfile: Example/Podfile 9 | # before_install: 10 | # - gem install cocoapods # Since Travis is not always on latest version 11 | # - pod install --project-directory=Example 12 | script: 13 | - set -o pipefail && xcodebuild test -workspace Example/LETimeIntervalPicker.xcworkspace -scheme LETimeIntervalPicker-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LETimeIntervalPicker/LETimeIntervalPicker.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/LETimeIntervalPicker 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LETimeIntervalPicker_Tests/Pods-LETimeIntervalPicker_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/LETimeIntervalPicker" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/LETimeIntervalPicker/LETimeIntervalPicker.framework/Headers" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LETimeIntervalPicker_Tests/Pods-LETimeIntervalPicker_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/LETimeIntervalPicker" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/LETimeIntervalPicker/LETimeIntervalPicker.framework/Headers" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/LETimeIntervalPicker.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "LETimeIntervalPicker", 3 | "version": "0.1.0", 4 | "summary": "A short description of LETimeIntervalPicker.", 5 | "description": "TODO: Add long description of the pod here.", 6 | "homepage": "https://github.com/ludvigeriksson/LETimeIntervalPicker", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "ludvigeriksson": "ludvigeriksson@icloud.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/ludvigeriksson/LETimeIntervalPicker.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "8.0" 20 | }, 21 | "source_files": "LETimeIntervalPicker/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | # Xcode 5 | build/ 6 | *.pbxuser 7 | !default.pbxuser 8 | *.mode1v3 9 | !default.mode1v3 10 | *.mode2v3 11 | !default.mode2v3 12 | *.perspectivev3 13 | !default.perspectivev3 14 | xcuserdata/ 15 | *.xccheckout 16 | profile 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | 22 | # Bundler 23 | .bundle 24 | 25 | Carthage 26 | # We recommend against adding the Pods directory to your .gitignore. However 27 | # you should judge for yourself, the pros and cons are mentioned at: 28 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 29 | # 30 | # Note: if you ignore the Pods directory, make sure to uncomment 31 | # `pod install` in .travis.yml 32 | # 33 | # Pods/ 34 | -------------------------------------------------------------------------------- /Example/LETimeIntervalPicker/sv.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "v 1.1"; ObjectID = "4JE-ow-16R"; */ 2 | "4JE-ow-16R.text" = "v 1.1"; 3 | 4 | /* Class = "UILabel"; text = "Animated"; ObjectID = "BS7-lv-AIy"; */ 5 | "BS7-lv-AIy.text" = "Animerad"; 6 | 7 | /* Class = "UILabel"; text = "LETimeIntervalPicker"; ObjectID = "Fu3-ZC-VeA"; */ 8 | "Fu3-ZC-VeA.text" = "LETimeIntervalPicker"; 9 | 10 | /* Class = "UILabel"; text = "0"; ObjectID = "Pk2-bd-ETn"; */ 11 | "Pk2-bd-ETn.text" = "0"; 12 | 13 | /* Class = "UILabel"; text = "by Ludvig Eriksson"; ObjectID = "esc-cd-cBH"; */ 14 | "esc-cd-cBH.text" = "av Ludvig Eriksson"; 15 | 16 | /* Class = "UIButton"; normalTitle = "Set random time interval"; ObjectID = "y5H-FN-qXm"; */ 17 | "y5H-FN-qXm.normalTitle" = "Sätt slumpmässig tid"; 18 | 19 | -------------------------------------------------------------------------------- /Example/LETimeIntervalPicker/en.lproj/Main.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "v 1.1"; ObjectID = "4JE-ow-16R"; */ 3 | "4JE-ow-16R.text" = "v 1.1"; 4 | 5 | /* Class = "UILabel"; text = "Animated"; ObjectID = "BS7-lv-AIy"; */ 6 | "BS7-lv-AIy.text" = "Animated"; 7 | 8 | /* Class = "UILabel"; text = "LETimeIntervalPicker"; ObjectID = "Fu3-ZC-VeA"; */ 9 | "Fu3-ZC-VeA.text" = "LETimeIntervalPicker"; 10 | 11 | /* Class = "UILabel"; text = "0"; ObjectID = "Pk2-bd-ETn"; */ 12 | "Pk2-bd-ETn.text" = "0"; 13 | 14 | /* Class = "UILabel"; text = "by Ludvig Eriksson"; ObjectID = "esc-cd-cBH"; */ 15 | "esc-cd-cBH.text" = "by Ludvig Eriksson"; 16 | 17 | /* Class = "UIButton"; normalTitle = "Set random time interval"; ObjectID = "y5H-FN-qXm"; */ 18 | "y5H-FN-qXm.normalTitle" = "Set random time interval"; 19 | -------------------------------------------------------------------------------- /Example/Tests/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 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LETimeIntervalPicker_Example/Pods-LETimeIntervalPicker_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/LETimeIntervalPicker" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/LETimeIntervalPicker/LETimeIntervalPicker.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "LETimeIntervalPicker" 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-LETimeIntervalPicker_Example/Pods-LETimeIntervalPicker_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/LETimeIntervalPicker" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/LETimeIntervalPicker/LETimeIntervalPicker.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "LETimeIntervalPicker" 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/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import XCTest 3 | //import LETimeIntervalPicker 4 | 5 | class Tests: XCTestCase { 6 | 7 | override func setUp() { 8 | super.setUp() 9 | // Put setup code here. This method is called before the invocation of each test method in the class. 10 | } 11 | 12 | override func tearDown() { 13 | // Put teardown code here. This method is called after the invocation of each test method in the class. 14 | super.tearDown() 15 | } 16 | 17 | func testExample() { 18 | // This is an example of a functional test case. 19 | XCTAssert(true, "Pass") 20 | } 21 | 22 | func testPerformanceExample() { 23 | // This is an example of a performance test case. 24 | self.measure() { 25 | // Put the code you want to measure the time of here. 26 | } 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LETimeIntervalPicker/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 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LETimeIntervalPicker_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/Pods/Target Support Files/Pods-LETimeIntervalPicker_Tests/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 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # LETimeIntervalPicker 2 | 3 | [![Version](https://img.shields.io/cocoapods/v/LETimeIntervalPicker.svg?style=flat)](http://cocoapods.org/pods/LETimeIntervalPicker) 4 | [![License](https://img.shields.io/cocoapods/l/LETimeIntervalPicker.svg?style=flat)](http://cocoapods.org/pods/LETimeIntervalPicker) 5 | [![Platform](https://img.shields.io/cocoapods/p/LETimeIntervalPicker.svg?style=flat)](http://cocoapods.org/pods/LETimeIntervalPicker) 6 | 7 | ## Example 8 | 9 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 10 | 11 | ## Installation 12 | 13 | LETimeIntervalPicker is available through [CocoaPods](http://cocoapods.org). To install 14 | it, simply add the following line to your Podfile: 15 | 16 | ```ruby 17 | pod "LETimeIntervalPicker" 18 | ``` 19 | 20 | ## Author 21 | 22 | ludvigeriksson, ludvigeriksson@icloud.com 23 | 24 | ## License 25 | 26 | LETimeIntervalPicker is available under the MIT license. See the LICENSE file for more info. 27 | -------------------------------------------------------------------------------- /Example/LETimeIntervalPicker/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 | "info" : { 45 | "version" : 1, 46 | "author" : "xcode" 47 | } 48 | } -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LETimeIntervalPicker_Tests/Pods-LETimeIntervalPicker_Tests-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 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LETimeIntervalPicker/en.lproj/LETimeIntervalPickerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "days-full-singular" = "day"; 2 | "days-short-singular" = "day"; 3 | "days-abbreviated-singular" = "d"; 4 | "days-full-plural" = "days"; 5 | "days-short-plural" = "days"; 6 | "days-abbreviated-plural" = "d"; 7 | 8 | "hours-full-singular" = "hour"; 9 | "hours-short-singular" = "hr"; 10 | "hours-abbreviated-singular" = "h"; 11 | "hours-full-plural" = "hours"; 12 | "hours-short-plural" = "hrs"; 13 | "hours-abbreviated-plural" = "h"; 14 | 15 | "minutes-full-singular" = "minute"; 16 | "minutes-short-singular" = "min"; 17 | "minutes-abbreviated-singular" = "m"; 18 | "minutes-full-plural" = "minutes"; 19 | "minutes-short-plural" = "mins"; 20 | "minutes-abbreviated-plural" = "m"; 21 | 22 | "seconds-full-singular" = "second"; 23 | "seconds-short-singular" = "sec"; 24 | "seconds-abbreviated-singular" = "s"; 25 | "seconds-full-plural" = "seconds"; 26 | "seconds-short-plural" = "secs"; 27 | "seconds-abbreviated-plural" = "s"; 28 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LETimeIntervalPicker/sv.lproj/LETimeIntervalPickerLocalizable.strings: -------------------------------------------------------------------------------- 1 | "days-full-singular" = "dag"; 2 | "days-short-singular" = "dag"; 3 | "days-abbreviated-singular" = "d"; 4 | "days-full-plural" = "dagar"; 5 | "days-short-plural" = "dagar"; 6 | "days-abbreviated-plural" = "d"; 7 | 8 | "hours-full-singular" = "timme"; 9 | "hours-short-singular" = "tim"; 10 | "hours-abbreviated-singular" = "h"; 11 | "hours-full-plural" = "timmar"; 12 | "hours-short-plural" = "tim"; 13 | "hours-abbreviated-plural" = "h"; 14 | 15 | "minutes-full-singular" = "minut"; 16 | "minutes-short-singular" = "min"; 17 | "minutes-abbreviated-singular" = "m"; 18 | "minutes-full-plural" = "minuter"; 19 | "minutes-short-plural" = "min"; 20 | "minutes-abbreviated-plural" = "m"; 21 | 22 | "seconds-full-singular" = "sekund"; 23 | "seconds-short-singular" = "sek"; 24 | "seconds-abbreviated-singular" = "s"; 25 | "seconds-full-plural" = "sekunder"; 26 | "seconds-short-plural" = "sek"; 27 | "seconds-abbreviated-plural" = "s"; 28 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017 ludvigeriksson 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /Example/LETimeIntervalPicker/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.1 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 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LETimeIntervalPicker_Example/Pods-LETimeIntervalPicker_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## LETimeIntervalPicker 5 | 6 | Copyright (c) 2017 ludvigeriksson 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/LETimeIntervalPicker/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // LETimeIntervalPicker 4 | // 5 | // Created by ludvigeriksson on 05/03/2017. 6 | // Copyright (c) 2017 ludvigeriksson. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import LETimeIntervalPicker 11 | 12 | class ViewController: UIViewController { 13 | 14 | @IBOutlet weak var timeIntervalPicker: LETimeIntervalPicker! { 15 | didSet { 16 | timeIntervalPicker.set(numberOfRows: 100, for: .hours) 17 | } 18 | } 19 | @IBOutlet weak var timeLabel: UILabel! 20 | @IBOutlet weak var animatedSwitch: UISwitch! 21 | 22 | @IBAction func random(_ sender: UIButton) { 23 | let random = TimeInterval(arc4random_uniform(86400)) 24 | if animatedSwitch.isOn { 25 | timeIntervalPicker.setTimeIntervalAnimated(random) 26 | } else { 27 | timeIntervalPicker.timeInterval = random 28 | } 29 | } 30 | 31 | @IBAction func pickerChanged(_ sender: LETimeIntervalPicker) { 32 | let formatter = DateComponentsFormatter() 33 | formatter.unitsStyle = .full 34 | 35 | var components = DateComponents() 36 | let timeInterval = sender.timeIntervalAsComponents() 37 | components.hour = timeInterval[.hours] 38 | components.minute = timeInterval[.minutes] 39 | components.second = timeInterval[.seconds] 40 | 41 | timeLabel.text = formatter.string(from: components) 42 | } 43 | 44 | } 45 | 46 | -------------------------------------------------------------------------------- /LETimeIntervalPicker.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint LETimeIntervalPicker.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = 'LETimeIntervalPicker' 11 | s.version = '1.1' 12 | s.summary = 'A UIDatePicker for time intervals.' 13 | 14 | # This description is used to generate tags and improve search results. 15 | # * Think: What does it do? Why did you write it? What is the focus? 16 | # * Try to keep it short, snappy and to the point. 17 | # * Write the description between the DESC delimiters below. 18 | # * Finally, don't worry about the indent, CocoaPods strips it! 19 | 20 | s.description = <<-DESC 21 | TODO: Add long description of the pod here. 22 | DESC 23 | 24 | s.homepage = 'https://github.com/ludvigeriksson/LETimeIntervalPicker' 25 | # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' 26 | s.license = { :type => 'MIT', :file => 'LICENSE' } 27 | s.author = { 'ludvigeriksson' => 'ludvigeriksson@icloud.com' } 28 | s.source = { :git => 'https://github.com/ludvigeriksson/LETimeIntervalPicker.git', :tag => s.version.to_s } 29 | # s.social_media_url = 'https://twitter.com/ludvigerikss0n' 30 | 31 | s.ios.deployment_target = '9.0' 32 | 33 | s.source_files = 'LETimeIntervalPicker/Classes/**/*' 34 | 35 | # s.resource_bundles = { 36 | # 'LETimeIntervalPicker' => ['LETimeIntervalPicker/Assets/*.png'] 37 | # } 38 | 39 | # s.public_header_files = 'Pod/Classes/**/*.h' 40 | # s.frameworks = 'UIKit', 'MapKit' 41 | # s.dependency 'AFNetworking', '~> 2.3' 42 | end 43 | -------------------------------------------------------------------------------- /Example/LETimeIntervalPicker/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // LETimeIntervalPicker 4 | // 5 | // Created by ludvigeriksson on 05/03/2017. 6 | // Copyright (c) 2017 ludvigeriksson. 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: [UIApplicationLaunchOptionsKey: 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-LETimeIntervalPicker_Example/Pods-LETimeIntervalPicker_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 | Copyright (c) 2017 ludvigeriksson <ludvigeriksson@icloud.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | License 38 | MIT 39 | Title 40 | LETimeIntervalPicker 41 | Type 42 | PSGroupSpecifier 43 | 44 | 45 | FooterText 46 | Generated by CocoaPods - https://cocoapods.org 47 | Title 48 | 49 | Type 50 | PSGroupSpecifier 51 | 52 | 53 | StringsTable 54 | Acknowledgements 55 | Title 56 | Acknowledgements 57 | 58 | 59 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LETimeIntervalPicker_Tests/Pods-LETimeIntervalPicker_Tests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" 63 | 64 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 65 | code_sign_cmd="$code_sign_cmd &" 66 | fi 67 | echo "$code_sign_cmd" 68 | eval "$code_sign_cmd" 69 | fi 70 | } 71 | 72 | # Strip invalid architectures 73 | strip_invalid_archs() { 74 | binary="$1" 75 | # Get architectures for current file 76 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 77 | stripped="" 78 | for arch in $archs; do 79 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 80 | # Strip non-valid architectures in-place 81 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 82 | stripped="$stripped $arch" 83 | fi 84 | done 85 | if [[ "$stripped" ]]; then 86 | echo "Stripped $binary of architectures:$stripped" 87 | fi 88 | } 89 | 90 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 91 | wait 92 | fi 93 | -------------------------------------------------------------------------------- /Example/LETimeIntervalPicker/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 24 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LETimeIntervalPicker_Example/Pods-LETimeIntervalPicker_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" 63 | 64 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 65 | code_sign_cmd="$code_sign_cmd &" 66 | fi 67 | echo "$code_sign_cmd" 68 | eval "$code_sign_cmd" 69 | fi 70 | } 71 | 72 | # Strip invalid architectures 73 | strip_invalid_archs() { 74 | binary="$1" 75 | # Get architectures for current file 76 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 77 | stripped="" 78 | for arch in $archs; do 79 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 80 | # Strip non-valid architectures in-place 81 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 82 | stripped="$stripped $arch" 83 | fi 84 | done 85 | if [[ "$stripped" ]]; then 86 | echo "Stripped $binary of architectures:$stripped" 87 | fi 88 | } 89 | 90 | 91 | if [[ "$CONFIGURATION" == "Debug" ]]; then 92 | install_framework "$BUILT_PRODUCTS_DIR/LETimeIntervalPicker/LETimeIntervalPicker.framework" 93 | fi 94 | if [[ "$CONFIGURATION" == "Release" ]]; then 95 | install_framework "$BUILT_PRODUCTS_DIR/LETimeIntervalPicker/LETimeIntervalPicker.framework" 96 | fi 97 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 98 | wait 99 | fi 100 | -------------------------------------------------------------------------------- /Example/LETimeIntervalPicker.xcodeproj/xcshareddata/xcschemes/LETimeIntervalPicker-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/Pods/Target Support Files/Pods-LETimeIntervalPicker_Tests/Pods-LETimeIntervalPicker_Tests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | 3) 22 | TARGET_DEVICE_ARGS="--target-device tv" 23 | ;; 24 | 4) 25 | TARGET_DEVICE_ARGS="--target-device watch" 26 | ;; 27 | *) 28 | TARGET_DEVICE_ARGS="--target-device mac" 29 | ;; 30 | esac 31 | 32 | install_resource() 33 | { 34 | if [[ "$1" = /* ]] ; then 35 | RESOURCE_PATH="$1" 36 | else 37 | RESOURCE_PATH="${PODS_ROOT}/$1" 38 | fi 39 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 40 | cat << EOM 41 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 42 | EOM 43 | exit 1 44 | fi 45 | case $RESOURCE_PATH in 46 | *.storyboard) 47 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" 48 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 49 | ;; 50 | *.xib) 51 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" 52 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 53 | ;; 54 | *.framework) 55 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 56 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 57 | echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 58 | rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 59 | ;; 60 | *.xcdatamodel) 61 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 62 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 63 | ;; 64 | *.xcdatamodeld) 65 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 66 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 67 | ;; 68 | *.xcmappingmodel) 69 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 70 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 71 | ;; 72 | *.xcassets) 73 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 74 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 75 | ;; 76 | *) 77 | echo "$RESOURCE_PATH" 78 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 79 | ;; 80 | esac 81 | } 82 | 83 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 84 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 85 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 86 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 87 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 88 | fi 89 | rm -f "$RESOURCES_TO_COPY" 90 | 91 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 92 | then 93 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 94 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 95 | while read line; do 96 | if [[ $line != "${PODS_ROOT}*" ]]; then 97 | XCASSET_FILES+=("$line") 98 | fi 99 | done <<<"$OTHER_XCASSETS" 100 | 101 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 102 | fi 103 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LETimeIntervalPicker_Example/Pods-LETimeIntervalPicker_Example-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | XCASSET_FILES=() 10 | 11 | case "${TARGETED_DEVICE_FAMILY}" in 12 | 1,2) 13 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 14 | ;; 15 | 1) 16 | TARGET_DEVICE_ARGS="--target-device iphone" 17 | ;; 18 | 2) 19 | TARGET_DEVICE_ARGS="--target-device ipad" 20 | ;; 21 | 3) 22 | TARGET_DEVICE_ARGS="--target-device tv" 23 | ;; 24 | 4) 25 | TARGET_DEVICE_ARGS="--target-device watch" 26 | ;; 27 | *) 28 | TARGET_DEVICE_ARGS="--target-device mac" 29 | ;; 30 | esac 31 | 32 | install_resource() 33 | { 34 | if [[ "$1" = /* ]] ; then 35 | RESOURCE_PATH="$1" 36 | else 37 | RESOURCE_PATH="${PODS_ROOT}/$1" 38 | fi 39 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 40 | cat << EOM 41 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 42 | EOM 43 | exit 1 44 | fi 45 | case $RESOURCE_PATH in 46 | *.storyboard) 47 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" 48 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 49 | ;; 50 | *.xib) 51 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" 52 | ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 53 | ;; 54 | *.framework) 55 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 56 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 57 | echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 58 | rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 59 | ;; 60 | *.xcdatamodel) 61 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" 62 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 63 | ;; 64 | *.xcdatamodeld) 65 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" 66 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 67 | ;; 68 | *.xcmappingmodel) 69 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" 70 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 71 | ;; 72 | *.xcassets) 73 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 74 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 75 | ;; 76 | *) 77 | echo "$RESOURCE_PATH" 78 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 79 | ;; 80 | esac 81 | } 82 | 83 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 84 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 85 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 86 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 87 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 88 | fi 89 | rm -f "$RESOURCES_TO_COPY" 90 | 91 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 92 | then 93 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 94 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 95 | while read line; do 96 | if [[ $line != "${PODS_ROOT}*" ]]; then 97 | XCASSET_FILES+=("$line") 98 | fi 99 | done <<<"$OTHER_XCASSETS" 100 | 101 | printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 102 | fi 103 | -------------------------------------------------------------------------------- /Example/LETimeIntervalPicker/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 | 32 | 38 | 44 | 45 | 46 | 47 | 48 | 49 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 72 | 73 | 74 | 75 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | -------------------------------------------------------------------------------- /LETimeIntervalPicker/Classes/LETimeIntervalPicker.swift: -------------------------------------------------------------------------------- 1 | // 2 | // LETimeIntervalPicker.swift 3 | // LETimeIntervalPicker 4 | // 5 | // Created by Ludvig Eriksson on 2017-05-03. 6 | // Copyright (c) 2017 Ludvig Eriksson. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @IBDesignable public class LETimeIntervalPicker: UIControl { 12 | 13 | // MARK: - Enums & constants 14 | 15 | /// LETimeIntervalPicker.Component represent the different types of 16 | /// components that can be displayed in the picker. 17 | /// 18 | /// - days: 86400 seconds 19 | /// - hours: 3600 seconds 20 | /// - minutes: 60 seconds 21 | /// - seconds: 1 second 22 | public enum Component: String { 23 | case days 24 | case hours 25 | case minutes 26 | case seconds 27 | } 28 | 29 | /// How the picker displays component names 30 | /// 31 | /// See LETimeIntervalPickerLocalizable.strings for local variants. 32 | /// 33 | /// - full: days / hours / minutes / seconds 34 | /// - short: days / hrs / mins / secs 35 | /// - abbreviated: d / h / m / s 36 | public enum UnitsStyle: String { 37 | case full 38 | case short 39 | case abbreviated 40 | } 41 | 42 | fileprivate struct Constants { 43 | static let standardComponentSpacing: CGFloat = 5 // UIPickerView has a 5 point space between components 44 | static let labelSpacing: CGFloat = 5 // Spacing between picker numbers and labels 45 | 46 | static let numberOfLoops = 1000 // Loops to appear to be infinite 47 | 48 | static let componentValues: [Component: TimeInterval] = [ 49 | .days: 86_400, 50 | .hours: 3_600, 51 | .minutes: 60, 52 | .seconds: 1 53 | ] 54 | } 55 | 56 | // MARK: - UI Elements 57 | 58 | fileprivate var pickerView = UIPickerView() 59 | fileprivate var labels: [UILabel] = [] 60 | 61 | // MARK: - Public API - 62 | 63 | // MARK: Getting & setting the time interval 64 | 65 | /// The time interval currently being displayed in the picker 66 | public var timeInterval: TimeInterval { 67 | get { 68 | return getTimeInterval() 69 | } 70 | set { 71 | setTimeInterval(timeInterval: newValue, animated: false) 72 | } 73 | } 74 | 75 | /// Animates the time interval change by spinning the different picker components 76 | /// 77 | /// - Parameter timeInterval: The time interval to animate to 78 | public func setTimeIntervalAnimated(_ timeInterval: TimeInterval) { 79 | setTimeInterval(timeInterval: timeInterval, animated: true) 80 | } 81 | 82 | /// Returns the time interval currently being displayed in the picker 83 | /// as amounts of each component 84 | /// 85 | /// - Returns: Amount of each component currently displayed 86 | public func timeIntervalAsComponents() -> [Component: Int] { 87 | var timeInterval: [Component: Int] = [:] 88 | for (index, component) in components.enumerated() { 89 | var selected = pickerView.selectedRow(inComponent: index) 90 | if loops { 91 | selected = selected % numberOfRows[component]! 92 | } 93 | timeInterval[component] = selected 94 | } 95 | return timeInterval 96 | } 97 | 98 | // MARK: Customizing functionality & appearance 99 | 100 | /// The components that the picker displays, can be set to any components 101 | /// in any order 102 | /// 103 | /// Defaults to hours, minutes & seconds 104 | public var components: [Component] = [.hours, .minutes, .seconds] { 105 | didSet { 106 | reloadData() 107 | } 108 | } 109 | 110 | /// Customize how many rows should be displayed for each component 111 | /// 112 | /// Default values: 113 | /// - days: 365 114 | /// - hours: 24 115 | /// - minutes: 60 116 | /// - seconds: 60 117 | /// 118 | /// - Parameters: 119 | /// - numberOfRows: The row count, including 0 120 | /// - component: The component to set the row count for 121 | public func set(numberOfRows: Int, for component: Component) { 122 | self.numberOfRows[component] = numberOfRows 123 | reloadData() 124 | resetToDefaultValue() 125 | } 126 | 127 | /// The font used to display numbers in the picker 128 | /// 129 | /// Defaults to a system font of size 17 130 | public var numberFont = UIFont.systemFont(ofSize: 17) { didSet { reloadData() } } 131 | 132 | /// The font used to display component names in the picker 133 | /// 134 | /// Defaults to a system font of size 17 135 | public var textFont = UIFont.systemFont(ofSize: 17) { didSet { reloadData() } } 136 | 137 | /// The style to use for displaying the component names 138 | /// 139 | /// See LETimeIntervalPicker.UnitsStyle for details 140 | public var unitsStyle = UnitsStyle.full 141 | 142 | /// Whether the picker should loop around to appear as being infinite 143 | /// 144 | /// Default value is false 145 | public var loops = false { didSet { reloadData() } } 146 | 147 | // MARK: Reloading 148 | 149 | public func reloadData() { 150 | calculateNumberWidths() 151 | pickerView.reloadAllComponents() 152 | updateTextLabels() 153 | setNeedsLayout() 154 | layoutIfNeeded() 155 | } 156 | 157 | // MARK: - Helpers 158 | 159 | private func getTimeInterval() -> TimeInterval { 160 | var total: TimeInterval = 0 161 | for (index, component) in components.enumerated() { 162 | var selected = pickerView.selectedRow(inComponent: index) 163 | print(selected) 164 | if loops { 165 | selected = selected % numberOfRows[component]! 166 | } 167 | print(selected) 168 | print() 169 | total += Constants.componentValues[component]! * TimeInterval(selected) 170 | } 171 | return total 172 | } 173 | 174 | private func setTimeInterval(timeInterval: TimeInterval, animated: Bool) { 175 | let sortedComponents = components.sorted { 176 | Constants.componentValues[$0]! > Constants.componentValues[$1]! 177 | } 178 | var timeLeft = timeInterval 179 | for component in sortedComponents { 180 | var componentCount = 0 181 | while timeLeft >= Constants.componentValues[component]! { 182 | componentCount += 1 183 | timeLeft -= Constants.componentValues[component]! 184 | } 185 | if componentCount > numberOfRows[component]! { 186 | print("LETimeIntervalPicker WARNING: " + 187 | "Not enough rows to display the specified time interval " + 188 | "(requires \(componentCount) rows for component '\(component.rawValue)', " + 189 | "but specified maximum is \(numberOfRows[component]!))" 190 | ) 191 | } 192 | let index = components.index(of: component)! 193 | if loops { 194 | let selectedRow = pickerView.selectedRow(inComponent: index) 195 | let selectedValue = selectedRow % numberOfRows[component]! 196 | componentCount += (selectedRow - selectedValue) 197 | } 198 | pickerView.selectRow(componentCount, inComponent: index, animated: animated) 199 | } 200 | sendActions(for: .valueChanged) 201 | } 202 | 203 | private func resetToDefaultValue() { 204 | for (i, component) in components.enumerated() { 205 | var count = 0 206 | if loops { 207 | count = numberOfRows[component]! * (Constants.numberOfLoops / 2) 208 | } 209 | pickerView.selectRow(count, inComponent: i, animated: false) 210 | } 211 | } 212 | 213 | // MARK: - Layout calculations 214 | 215 | fileprivate var numberOfRows: [Component: Int] = [ 216 | .days: 365, 217 | .hours: 24, 218 | .minutes: 60, 219 | .seconds: 60 220 | ] 221 | 222 | fileprivate var numberWidths: [Component: CGFloat] = [:] 223 | 224 | /// Calculates the widest label width for all number labels 225 | /// and stores it in numberWidths 226 | fileprivate func calculateNumberWidths() { 227 | for component in components { 228 | let label = UILabel() 229 | label.font = numberFont 230 | for i in 0.. numberWidths[component] ?? 0 { 234 | numberWidths[component] = label.bounds.width 235 | } 236 | } 237 | } 238 | } 239 | 240 | 241 | /// Calculates the total width of the contents of the picker, 242 | /// including numbers, component labels and spacing in between 243 | /// 244 | /// - Returns: The calculated width 245 | fileprivate func calculateTotalWidth() -> CGFloat { 246 | var totalWidth: CGFloat = 0 247 | for (index, component) in components.enumerated() { 248 | totalWidth += numberWidths[component]! 249 | let label = labels[index] 250 | totalWidth += label.bounds.width 251 | } 252 | totalWidth += Constants.standardComponentSpacing * CGFloat(components.count - 1) 253 | totalWidth += Constants.labelSpacing * CGFloat(components.count) 254 | return totalWidth 255 | } 256 | 257 | 258 | /// Positions the labels in the correct position 259 | fileprivate func positionLabels() { 260 | let totalWidth = calculateTotalWidth() 261 | 262 | var current = bounds.midX - totalWidth / 2 263 | for (index, component) in components.enumerated() { 264 | current += numberWidths[component]! 265 | current += Constants.labelSpacing 266 | let label = labels[index] 267 | label.frame.origin.x = current 268 | label.frame.origin.y = bounds.midY - label.bounds.midY 269 | current += label.bounds.width 270 | current += Constants.standardComponentSpacing 271 | } 272 | } 273 | 274 | // MARK: - Layout 275 | 276 | public override func layoutSubviews() { 277 | super.layoutSubviews() 278 | positionLabels() 279 | } 280 | 281 | // MARK: - Localization 282 | 283 | fileprivate func title(for component: Component, count: Int) -> String { 284 | var key = component.rawValue + "-" + unitsStyle.rawValue 285 | switch count { 286 | case 1: 287 | key += "-singular" 288 | default: 289 | key += "-plural" 290 | } 291 | let bundle = Bundle(for: LETimeIntervalPicker.self) 292 | let tableName = "LETimeIntervalPickerLocalizable" 293 | return NSLocalizedString(key, tableName: tableName, bundle: bundle, comment: "") 294 | } 295 | 296 | fileprivate func updateTextLabels() { 297 | labels.forEach { $0.removeFromSuperview() } 298 | for (index, component) in components.enumerated() { 299 | 300 | // Get an unused label or create a new one 301 | var label: UILabel 302 | if index < labels.count { 303 | label = labels[index] 304 | } else { 305 | label = UILabel() 306 | labels.append(label) 307 | } 308 | addSubview(label) 309 | 310 | // Update the label 311 | #if TARGET_INTERFACE_BUILDER 312 | // Interface builder will crash otherwise 313 | let count = 0 314 | #else 315 | let count = pickerView.selectedRow(inComponent: index) 316 | #endif 317 | label.text = title(for: component, count: count) 318 | label.font = textFont 319 | label.sizeToFit() 320 | } 321 | } 322 | 323 | // MARK: - Initialization 324 | 325 | public override init(frame: CGRect) { 326 | super.init(frame: frame) 327 | initialize() 328 | } 329 | 330 | required public init?(coder aDecoder: NSCoder) { 331 | super.init(coder: aDecoder) 332 | initialize() 333 | } 334 | 335 | private func initialize() { 336 | updateTextLabels() 337 | setupPickerView() 338 | reloadData() 339 | resetToDefaultValue() 340 | } 341 | 342 | fileprivate func setupPickerView() { 343 | pickerView.dataSource = self 344 | pickerView.delegate = self 345 | pickerView.translatesAutoresizingMaskIntoConstraints = false 346 | addSubview(pickerView) 347 | pickerView.fillSuperview() 348 | } 349 | 350 | } 351 | 352 | extension LETimeIntervalPicker: UIPickerViewDataSource { 353 | 354 | public func numberOfComponents(in pickerView: UIPickerView) -> Int { 355 | return components.count 356 | } 357 | 358 | public func pickerView(_ pickerView: UIPickerView, numberOfRowsInComponent component: Int) -> Int { 359 | if loops { 360 | return numberOfRows[components[component]]! * Constants.numberOfLoops 361 | } 362 | return numberOfRows[components[component]]! 363 | } 364 | 365 | public func pickerView(_ pickerView: UIPickerView, viewForRow row: Int, forComponent component: Int, reusing view: UIView?) -> UIView { 366 | 367 | var row = row 368 | if loops { 369 | row %= numberOfRows[components[component]]! 370 | } 371 | 372 | let size = pickerView.rowSize(forComponent: component) 373 | 374 | var newView = view 375 | if newView == nil { 376 | newView = UIView(frame: CGRect(origin: .zero, size: size)) 377 | let label = UILabel() 378 | newView!.addSubview(label) 379 | label.textAlignment = .right 380 | } 381 | let label = newView!.subviews.first as! UILabel 382 | label.font = numberFont 383 | label.frame.size.height = size.height 384 | label.frame.size.width = numberWidths[components[component]]! 385 | label.text = "\(row)" 386 | 387 | return newView! 388 | } 389 | } 390 | 391 | extension LETimeIntervalPicker: UIPickerViewDelegate { 392 | 393 | public func pickerView(_ pickerView: UIPickerView, widthForComponent component: Int) -> CGFloat { 394 | let label = labels[component] 395 | let component = components[component] 396 | let numberWidth = numberWidths[component]! 397 | let totalWidth = numberWidth + label.bounds.width + Constants.labelSpacing 398 | return totalWidth 399 | } 400 | 401 | public func pickerView(_ pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) { 402 | if loops { 403 | let rowCount = numberOfRows[components[component]]! 404 | let value = row % rowCount 405 | let middle = rowCount * (Constants.numberOfLoops / 2) + value 406 | pickerView.selectRow(middle, inComponent: component, animated: false) 407 | } 408 | sendActions(for: .valueChanged) 409 | } 410 | } 411 | 412 | extension UIView { 413 | func fillSuperview() { 414 | let attributes: [NSLayoutAttribute] = [.top, .bottom, .leading, .trailing] 415 | for attribute in attributes { 416 | let constraint = NSLayoutConstraint( 417 | item: self, 418 | attribute: attribute, 419 | relatedBy: .equal, 420 | toItem: superview, 421 | attribute: attribute, 422 | multiplier: 1, 423 | constant: 0 424 | ) 425 | superview?.addConstraint(constraint) 426 | } 427 | } 428 | } 429 | -------------------------------------------------------------------------------- /Example/LETimeIntervalPicker.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 0C1CE81EF8CA1D6BF4093D43 /* Pods_LETimeIntervalPicker_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E7EC1279498FAA74F82BCC53 /* Pods_LETimeIntervalPicker_Example.framework */; }; 11 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 12 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 13 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 14 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 15 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 16 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; 17 | 83618D601EC06D6E002474E5 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 83618D621EC06D6E002474E5 /* InfoPlist.strings */; }; 18 | 83618D651EC06D6F002474E5 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 83618D671EC06D6F002474E5 /* Localizable.strings */; }; 19 | 83618D6A1EC06D71002474E5 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 83618D6C1EC06D71002474E5 /* InfoPlist.strings */; }; 20 | 945137541789922A0CEB27DB /* Pods_LETimeIntervalPicker_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46212254B2B742DD15698980 /* Pods_LETimeIntervalPicker_Tests.framework */; }; 21 | /* End PBXBuildFile section */ 22 | 23 | /* Begin PBXContainerItemProxy section */ 24 | 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { 25 | isa = PBXContainerItemProxy; 26 | containerPortal = 607FACC81AFB9204008FA782 /* Project object */; 27 | proxyType = 1; 28 | remoteGlobalIDString = 607FACCF1AFB9204008FA782; 29 | remoteInfo = LETimeIntervalPicker; 30 | }; 31 | /* End PBXContainerItemProxy section */ 32 | 33 | /* Begin PBXFileReference section */ 34 | 0EE44443F8F423289FFC4391 /* LETimeIntervalPicker.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LETimeIntervalPicker.podspec; path = ../LETimeIntervalPicker.podspec; sourceTree = ""; }; 35 | 1194350B798AE7EC65D87460 /* Pods-LETimeIntervalPicker_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LETimeIntervalPicker_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-LETimeIntervalPicker_Example/Pods-LETimeIntervalPicker_Example.release.xcconfig"; sourceTree = ""; }; 36 | 46212254B2B742DD15698980 /* Pods_LETimeIntervalPicker_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_LETimeIntervalPicker_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 37 | 5DFDFA4CB0DFFA21C440BFEE /* Pods-LETimeIntervalPicker_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LETimeIntervalPicker_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-LETimeIntervalPicker_Tests/Pods-LETimeIntervalPicker_Tests.release.xcconfig"; sourceTree = ""; }; 38 | 607FACD01AFB9204008FA782 /* LETimeIntervalPicker_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = LETimeIntervalPicker_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 39 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 40 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 41 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 42 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 43 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 44 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 45 | 607FACE51AFB9204008FA782 /* LETimeIntervalPicker_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LETimeIntervalPicker_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 46 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 47 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 48 | 83618D571EBF70CC002474E5 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Main.strings; sourceTree = ""; }; 49 | 83618D611EC06D6E002474E5 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = ""; }; 50 | 83618D661EC06D6F002474E5 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Localizable.strings; sourceTree = ""; }; 51 | 83618D6B1EC06D71002474E5 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = ""; }; 52 | 83618D6D1EC06D7F002474E5 /* Base */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = Base; path = Base.lproj/Localizable.strings; sourceTree = ""; }; 53 | 83618D6E1EC06D82002474E5 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = ""; }; 54 | 83919EEA1EBF6B59008CD4CA /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/Main.strings; sourceTree = ""; }; 55 | 83919EEB1EBF6B5A008CD4CA /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/LaunchScreen.strings; sourceTree = ""; }; 56 | 92F4624B5F90DB8A3167114E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 57 | A976A99F8E246A81234FD57A /* Pods-LETimeIntervalPicker_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LETimeIntervalPicker_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-LETimeIntervalPicker_Example/Pods-LETimeIntervalPicker_Example.debug.xcconfig"; sourceTree = ""; }; 58 | BF27003A43CD7721C1DA1D3B /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 59 | E7EC1279498FAA74F82BCC53 /* Pods_LETimeIntervalPicker_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_LETimeIntervalPicker_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 60 | EAD2002A04CFD24F879CFCC3 /* Pods-LETimeIntervalPicker_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LETimeIntervalPicker_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-LETimeIntervalPicker_Tests/Pods-LETimeIntervalPicker_Tests.debug.xcconfig"; sourceTree = ""; }; 61 | /* End PBXFileReference section */ 62 | 63 | /* Begin PBXFrameworksBuildPhase section */ 64 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 65 | isa = PBXFrameworksBuildPhase; 66 | buildActionMask = 2147483647; 67 | files = ( 68 | 0C1CE81EF8CA1D6BF4093D43 /* Pods_LETimeIntervalPicker_Example.framework in Frameworks */, 69 | ); 70 | runOnlyForDeploymentPostprocessing = 0; 71 | }; 72 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 73 | isa = PBXFrameworksBuildPhase; 74 | buildActionMask = 2147483647; 75 | files = ( 76 | 945137541789922A0CEB27DB /* Pods_LETimeIntervalPicker_Tests.framework in Frameworks */, 77 | ); 78 | runOnlyForDeploymentPostprocessing = 0; 79 | }; 80 | /* End PBXFrameworksBuildPhase section */ 81 | 82 | /* Begin PBXGroup section */ 83 | 607FACC71AFB9204008FA782 = { 84 | isa = PBXGroup; 85 | children = ( 86 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 87 | 607FACD21AFB9204008FA782 /* Example for LETimeIntervalPicker */, 88 | 607FACE81AFB9204008FA782 /* Tests */, 89 | 607FACD11AFB9204008FA782 /* Products */, 90 | C54850DFDF0E6904DE9726E9 /* Pods */, 91 | 8CF5B412A021AE73975434E3 /* Frameworks */, 92 | ); 93 | sourceTree = ""; 94 | }; 95 | 607FACD11AFB9204008FA782 /* Products */ = { 96 | isa = PBXGroup; 97 | children = ( 98 | 607FACD01AFB9204008FA782 /* LETimeIntervalPicker_Example.app */, 99 | 607FACE51AFB9204008FA782 /* LETimeIntervalPicker_Tests.xctest */, 100 | ); 101 | name = Products; 102 | sourceTree = ""; 103 | }; 104 | 607FACD21AFB9204008FA782 /* Example for LETimeIntervalPicker */ = { 105 | isa = PBXGroup; 106 | children = ( 107 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 108 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 109 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 110 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 111 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 112 | 607FACD31AFB9204008FA782 /* Supporting Files */, 113 | ); 114 | name = "Example for LETimeIntervalPicker"; 115 | path = LETimeIntervalPicker; 116 | sourceTree = ""; 117 | }; 118 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 119 | isa = PBXGroup; 120 | children = ( 121 | 83618D6C1EC06D71002474E5 /* InfoPlist.strings */, 122 | 83618D671EC06D6F002474E5 /* Localizable.strings */, 123 | 607FACD41AFB9204008FA782 /* Info.plist */, 124 | ); 125 | name = "Supporting Files"; 126 | sourceTree = ""; 127 | }; 128 | 607FACE81AFB9204008FA782 /* Tests */ = { 129 | isa = PBXGroup; 130 | children = ( 131 | 607FACEB1AFB9204008FA782 /* Tests.swift */, 132 | 607FACE91AFB9204008FA782 /* Supporting Files */, 133 | ); 134 | path = Tests; 135 | sourceTree = ""; 136 | }; 137 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 138 | isa = PBXGroup; 139 | children = ( 140 | 83618D621EC06D6E002474E5 /* InfoPlist.strings */, 141 | 607FACEA1AFB9204008FA782 /* Info.plist */, 142 | ); 143 | name = "Supporting Files"; 144 | sourceTree = ""; 145 | }; 146 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 147 | isa = PBXGroup; 148 | children = ( 149 | 0EE44443F8F423289FFC4391 /* LETimeIntervalPicker.podspec */, 150 | 92F4624B5F90DB8A3167114E /* README.md */, 151 | BF27003A43CD7721C1DA1D3B /* LICENSE */, 152 | ); 153 | name = "Podspec Metadata"; 154 | sourceTree = ""; 155 | }; 156 | 8CF5B412A021AE73975434E3 /* Frameworks */ = { 157 | isa = PBXGroup; 158 | children = ( 159 | E7EC1279498FAA74F82BCC53 /* Pods_LETimeIntervalPicker_Example.framework */, 160 | 46212254B2B742DD15698980 /* Pods_LETimeIntervalPicker_Tests.framework */, 161 | ); 162 | name = Frameworks; 163 | sourceTree = ""; 164 | }; 165 | C54850DFDF0E6904DE9726E9 /* Pods */ = { 166 | isa = PBXGroup; 167 | children = ( 168 | A976A99F8E246A81234FD57A /* Pods-LETimeIntervalPicker_Example.debug.xcconfig */, 169 | 1194350B798AE7EC65D87460 /* Pods-LETimeIntervalPicker_Example.release.xcconfig */, 170 | EAD2002A04CFD24F879CFCC3 /* Pods-LETimeIntervalPicker_Tests.debug.xcconfig */, 171 | 5DFDFA4CB0DFFA21C440BFEE /* Pods-LETimeIntervalPicker_Tests.release.xcconfig */, 172 | ); 173 | name = Pods; 174 | sourceTree = ""; 175 | }; 176 | /* End PBXGroup section */ 177 | 178 | /* Begin PBXNativeTarget section */ 179 | 607FACCF1AFB9204008FA782 /* LETimeIntervalPicker_Example */ = { 180 | isa = PBXNativeTarget; 181 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "LETimeIntervalPicker_Example" */; 182 | buildPhases = ( 183 | C4D2769DF87435B2A850E812 /* [CP] Check Pods Manifest.lock */, 184 | 607FACCC1AFB9204008FA782 /* Sources */, 185 | 607FACCD1AFB9204008FA782 /* Frameworks */, 186 | 607FACCE1AFB9204008FA782 /* Resources */, 187 | AB50D83F4437D9606ADD0254 /* [CP] Embed Pods Frameworks */, 188 | 8FA8DBE2D42146F63BF1CCE1 /* [CP] Copy Pods Resources */, 189 | ); 190 | buildRules = ( 191 | ); 192 | dependencies = ( 193 | ); 194 | name = LETimeIntervalPicker_Example; 195 | productName = LETimeIntervalPicker; 196 | productReference = 607FACD01AFB9204008FA782 /* LETimeIntervalPicker_Example.app */; 197 | productType = "com.apple.product-type.application"; 198 | }; 199 | 607FACE41AFB9204008FA782 /* LETimeIntervalPicker_Tests */ = { 200 | isa = PBXNativeTarget; 201 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "LETimeIntervalPicker_Tests" */; 202 | buildPhases = ( 203 | E153CE4E16CB83F240B0C4A6 /* [CP] Check Pods Manifest.lock */, 204 | 607FACE11AFB9204008FA782 /* Sources */, 205 | 607FACE21AFB9204008FA782 /* Frameworks */, 206 | 607FACE31AFB9204008FA782 /* Resources */, 207 | 0CC43E72CB03EBCDC4271D3E /* [CP] Embed Pods Frameworks */, 208 | 42369ABAA25482386E74E61C /* [CP] Copy Pods Resources */, 209 | ); 210 | buildRules = ( 211 | ); 212 | dependencies = ( 213 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */, 214 | ); 215 | name = LETimeIntervalPicker_Tests; 216 | productName = Tests; 217 | productReference = 607FACE51AFB9204008FA782 /* LETimeIntervalPicker_Tests.xctest */; 218 | productType = "com.apple.product-type.bundle.unit-test"; 219 | }; 220 | /* End PBXNativeTarget section */ 221 | 222 | /* Begin PBXProject section */ 223 | 607FACC81AFB9204008FA782 /* Project object */ = { 224 | isa = PBXProject; 225 | attributes = { 226 | LastSwiftUpdateCheck = 0720; 227 | LastUpgradeCheck = 0820; 228 | ORGANIZATIONNAME = CocoaPods; 229 | TargetAttributes = { 230 | 607FACCF1AFB9204008FA782 = { 231 | CreatedOnToolsVersion = 6.3.1; 232 | DevelopmentTeam = 5GKSWD54E7; 233 | LastSwiftMigration = 0820; 234 | }; 235 | 607FACE41AFB9204008FA782 = { 236 | CreatedOnToolsVersion = 6.3.1; 237 | DevelopmentTeam = 5GKSWD54E7; 238 | LastSwiftMigration = 0820; 239 | TestTargetID = 607FACCF1AFB9204008FA782; 240 | }; 241 | }; 242 | }; 243 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "LETimeIntervalPicker" */; 244 | compatibilityVersion = "Xcode 3.2"; 245 | developmentRegion = English; 246 | hasScannedForEncodings = 0; 247 | knownRegions = ( 248 | en, 249 | Base, 250 | ); 251 | mainGroup = 607FACC71AFB9204008FA782; 252 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 253 | projectDirPath = ""; 254 | projectRoot = ""; 255 | targets = ( 256 | 607FACCF1AFB9204008FA782 /* LETimeIntervalPicker_Example */, 257 | 607FACE41AFB9204008FA782 /* LETimeIntervalPicker_Tests */, 258 | ); 259 | }; 260 | /* End PBXProject section */ 261 | 262 | /* Begin PBXResourcesBuildPhase section */ 263 | 607FACCE1AFB9204008FA782 /* Resources */ = { 264 | isa = PBXResourcesBuildPhase; 265 | buildActionMask = 2147483647; 266 | files = ( 267 | 83618D651EC06D6F002474E5 /* Localizable.strings in Resources */, 268 | 83618D6A1EC06D71002474E5 /* InfoPlist.strings in Resources */, 269 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 270 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 271 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 272 | ); 273 | runOnlyForDeploymentPostprocessing = 0; 274 | }; 275 | 607FACE31AFB9204008FA782 /* Resources */ = { 276 | isa = PBXResourcesBuildPhase; 277 | buildActionMask = 2147483647; 278 | files = ( 279 | 83618D601EC06D6E002474E5 /* InfoPlist.strings in Resources */, 280 | ); 281 | runOnlyForDeploymentPostprocessing = 0; 282 | }; 283 | /* End PBXResourcesBuildPhase section */ 284 | 285 | /* Begin PBXShellScriptBuildPhase section */ 286 | 0CC43E72CB03EBCDC4271D3E /* [CP] Embed Pods Frameworks */ = { 287 | isa = PBXShellScriptBuildPhase; 288 | buildActionMask = 2147483647; 289 | files = ( 290 | ); 291 | inputPaths = ( 292 | ); 293 | name = "[CP] Embed Pods Frameworks"; 294 | outputPaths = ( 295 | ); 296 | runOnlyForDeploymentPostprocessing = 0; 297 | shellPath = /bin/sh; 298 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-LETimeIntervalPicker_Tests/Pods-LETimeIntervalPicker_Tests-frameworks.sh\"\n"; 299 | showEnvVarsInLog = 0; 300 | }; 301 | 42369ABAA25482386E74E61C /* [CP] Copy Pods Resources */ = { 302 | isa = PBXShellScriptBuildPhase; 303 | buildActionMask = 2147483647; 304 | files = ( 305 | ); 306 | inputPaths = ( 307 | ); 308 | name = "[CP] Copy Pods Resources"; 309 | outputPaths = ( 310 | ); 311 | runOnlyForDeploymentPostprocessing = 0; 312 | shellPath = /bin/sh; 313 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-LETimeIntervalPicker_Tests/Pods-LETimeIntervalPicker_Tests-resources.sh\"\n"; 314 | showEnvVarsInLog = 0; 315 | }; 316 | 8FA8DBE2D42146F63BF1CCE1 /* [CP] Copy Pods Resources */ = { 317 | isa = PBXShellScriptBuildPhase; 318 | buildActionMask = 2147483647; 319 | files = ( 320 | ); 321 | inputPaths = ( 322 | ); 323 | name = "[CP] Copy Pods Resources"; 324 | outputPaths = ( 325 | ); 326 | runOnlyForDeploymentPostprocessing = 0; 327 | shellPath = /bin/sh; 328 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-LETimeIntervalPicker_Example/Pods-LETimeIntervalPicker_Example-resources.sh\"\n"; 329 | showEnvVarsInLog = 0; 330 | }; 331 | AB50D83F4437D9606ADD0254 /* [CP] Embed Pods Frameworks */ = { 332 | isa = PBXShellScriptBuildPhase; 333 | buildActionMask = 2147483647; 334 | files = ( 335 | ); 336 | inputPaths = ( 337 | ); 338 | name = "[CP] Embed Pods Frameworks"; 339 | outputPaths = ( 340 | ); 341 | runOnlyForDeploymentPostprocessing = 0; 342 | shellPath = /bin/sh; 343 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-LETimeIntervalPicker_Example/Pods-LETimeIntervalPicker_Example-frameworks.sh\"\n"; 344 | showEnvVarsInLog = 0; 345 | }; 346 | C4D2769DF87435B2A850E812 /* [CP] Check Pods Manifest.lock */ = { 347 | isa = PBXShellScriptBuildPhase; 348 | buildActionMask = 2147483647; 349 | files = ( 350 | ); 351 | inputPaths = ( 352 | ); 353 | name = "[CP] Check Pods Manifest.lock"; 354 | outputPaths = ( 355 | ); 356 | runOnlyForDeploymentPostprocessing = 0; 357 | shellPath = /bin/sh; 358 | 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"; 359 | showEnvVarsInLog = 0; 360 | }; 361 | E153CE4E16CB83F240B0C4A6 /* [CP] Check Pods Manifest.lock */ = { 362 | isa = PBXShellScriptBuildPhase; 363 | buildActionMask = 2147483647; 364 | files = ( 365 | ); 366 | inputPaths = ( 367 | ); 368 | name = "[CP] Check Pods Manifest.lock"; 369 | outputPaths = ( 370 | ); 371 | runOnlyForDeploymentPostprocessing = 0; 372 | shellPath = /bin/sh; 373 | 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"; 374 | showEnvVarsInLog = 0; 375 | }; 376 | /* End PBXShellScriptBuildPhase section */ 377 | 378 | /* Begin PBXSourcesBuildPhase section */ 379 | 607FACCC1AFB9204008FA782 /* Sources */ = { 380 | isa = PBXSourcesBuildPhase; 381 | buildActionMask = 2147483647; 382 | files = ( 383 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 384 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 385 | ); 386 | runOnlyForDeploymentPostprocessing = 0; 387 | }; 388 | 607FACE11AFB9204008FA782 /* Sources */ = { 389 | isa = PBXSourcesBuildPhase; 390 | buildActionMask = 2147483647; 391 | files = ( 392 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, 393 | ); 394 | runOnlyForDeploymentPostprocessing = 0; 395 | }; 396 | /* End PBXSourcesBuildPhase section */ 397 | 398 | /* Begin PBXTargetDependency section */ 399 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 400 | isa = PBXTargetDependency; 401 | target = 607FACCF1AFB9204008FA782 /* LETimeIntervalPicker_Example */; 402 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 403 | }; 404 | /* End PBXTargetDependency section */ 405 | 406 | /* Begin PBXVariantGroup section */ 407 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 408 | isa = PBXVariantGroup; 409 | children = ( 410 | 607FACDA1AFB9204008FA782 /* Base */, 411 | 83919EEA1EBF6B59008CD4CA /* sv */, 412 | 83618D571EBF70CC002474E5 /* en */, 413 | ); 414 | name = Main.storyboard; 415 | sourceTree = ""; 416 | }; 417 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 418 | isa = PBXVariantGroup; 419 | children = ( 420 | 607FACDF1AFB9204008FA782 /* Base */, 421 | 83919EEB1EBF6B5A008CD4CA /* sv */, 422 | ); 423 | name = LaunchScreen.xib; 424 | sourceTree = ""; 425 | }; 426 | 83618D621EC06D6E002474E5 /* InfoPlist.strings */ = { 427 | isa = PBXVariantGroup; 428 | children = ( 429 | 83618D611EC06D6E002474E5 /* sv */, 430 | ); 431 | name = InfoPlist.strings; 432 | sourceTree = ""; 433 | }; 434 | 83618D671EC06D6F002474E5 /* Localizable.strings */ = { 435 | isa = PBXVariantGroup; 436 | children = ( 437 | 83618D661EC06D6F002474E5 /* sv */, 438 | 83618D6D1EC06D7F002474E5 /* Base */, 439 | 83618D6E1EC06D82002474E5 /* en */, 440 | ); 441 | name = Localizable.strings; 442 | sourceTree = ""; 443 | }; 444 | 83618D6C1EC06D71002474E5 /* InfoPlist.strings */ = { 445 | isa = PBXVariantGroup; 446 | children = ( 447 | 83618D6B1EC06D71002474E5 /* sv */, 448 | ); 449 | name = InfoPlist.strings; 450 | sourceTree = ""; 451 | }; 452 | /* End PBXVariantGroup section */ 453 | 454 | /* Begin XCBuildConfiguration section */ 455 | 607FACED1AFB9204008FA782 /* Debug */ = { 456 | isa = XCBuildConfiguration; 457 | buildSettings = { 458 | ALWAYS_SEARCH_USER_PATHS = NO; 459 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 460 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 461 | CLANG_CXX_LIBRARY = "libc++"; 462 | CLANG_ENABLE_MODULES = YES; 463 | CLANG_ENABLE_OBJC_ARC = YES; 464 | CLANG_WARN_BOOL_CONVERSION = YES; 465 | CLANG_WARN_CONSTANT_CONVERSION = YES; 466 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 467 | CLANG_WARN_EMPTY_BODY = YES; 468 | CLANG_WARN_ENUM_CONVERSION = YES; 469 | CLANG_WARN_INFINITE_RECURSION = YES; 470 | CLANG_WARN_INT_CONVERSION = YES; 471 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 472 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 473 | CLANG_WARN_UNREACHABLE_CODE = YES; 474 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 475 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 476 | COPY_PHASE_STRIP = NO; 477 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 478 | ENABLE_STRICT_OBJC_MSGSEND = YES; 479 | ENABLE_TESTABILITY = YES; 480 | GCC_C_LANGUAGE_STANDARD = gnu99; 481 | GCC_DYNAMIC_NO_PIC = NO; 482 | GCC_NO_COMMON_BLOCKS = YES; 483 | GCC_OPTIMIZATION_LEVEL = 0; 484 | GCC_PREPROCESSOR_DEFINITIONS = ( 485 | "DEBUG=1", 486 | "$(inherited)", 487 | ); 488 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 489 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 490 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 491 | GCC_WARN_UNDECLARED_SELECTOR = YES; 492 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 493 | GCC_WARN_UNUSED_FUNCTION = YES; 494 | GCC_WARN_UNUSED_VARIABLE = YES; 495 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 496 | MTL_ENABLE_DEBUG_INFO = YES; 497 | ONLY_ACTIVE_ARCH = YES; 498 | SDKROOT = iphoneos; 499 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 500 | }; 501 | name = Debug; 502 | }; 503 | 607FACEE1AFB9204008FA782 /* Release */ = { 504 | isa = XCBuildConfiguration; 505 | buildSettings = { 506 | ALWAYS_SEARCH_USER_PATHS = NO; 507 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 508 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 509 | CLANG_CXX_LIBRARY = "libc++"; 510 | CLANG_ENABLE_MODULES = YES; 511 | CLANG_ENABLE_OBJC_ARC = YES; 512 | CLANG_WARN_BOOL_CONVERSION = YES; 513 | CLANG_WARN_CONSTANT_CONVERSION = YES; 514 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 515 | CLANG_WARN_EMPTY_BODY = YES; 516 | CLANG_WARN_ENUM_CONVERSION = YES; 517 | CLANG_WARN_INFINITE_RECURSION = YES; 518 | CLANG_WARN_INT_CONVERSION = YES; 519 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 520 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 521 | CLANG_WARN_UNREACHABLE_CODE = YES; 522 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 523 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 524 | COPY_PHASE_STRIP = NO; 525 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 526 | ENABLE_NS_ASSERTIONS = NO; 527 | ENABLE_STRICT_OBJC_MSGSEND = YES; 528 | GCC_C_LANGUAGE_STANDARD = gnu99; 529 | GCC_NO_COMMON_BLOCKS = YES; 530 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 531 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 532 | GCC_WARN_UNDECLARED_SELECTOR = YES; 533 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 534 | GCC_WARN_UNUSED_FUNCTION = YES; 535 | GCC_WARN_UNUSED_VARIABLE = YES; 536 | IPHONEOS_DEPLOYMENT_TARGET = 8.3; 537 | MTL_ENABLE_DEBUG_INFO = NO; 538 | SDKROOT = iphoneos; 539 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 540 | VALIDATE_PRODUCT = YES; 541 | }; 542 | name = Release; 543 | }; 544 | 607FACF01AFB9204008FA782 /* Debug */ = { 545 | isa = XCBuildConfiguration; 546 | baseConfigurationReference = A976A99F8E246A81234FD57A /* Pods-LETimeIntervalPicker_Example.debug.xcconfig */; 547 | buildSettings = { 548 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 549 | DEVELOPMENT_TEAM = 5GKSWD54E7; 550 | INFOPLIST_FILE = LETimeIntervalPicker/Info.plist; 551 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 552 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 553 | MODULE_NAME = ExampleApp; 554 | PRODUCT_BUNDLE_IDENTIFIER = "com.ludvigeriksson.LETimeIntervalPicker-Example"; 555 | PRODUCT_NAME = "$(TARGET_NAME)"; 556 | SWIFT_VERSION = 3.0; 557 | }; 558 | name = Debug; 559 | }; 560 | 607FACF11AFB9204008FA782 /* Release */ = { 561 | isa = XCBuildConfiguration; 562 | baseConfigurationReference = 1194350B798AE7EC65D87460 /* Pods-LETimeIntervalPicker_Example.release.xcconfig */; 563 | buildSettings = { 564 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 565 | DEVELOPMENT_TEAM = 5GKSWD54E7; 566 | INFOPLIST_FILE = LETimeIntervalPicker/Info.plist; 567 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 568 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 569 | MODULE_NAME = ExampleApp; 570 | PRODUCT_BUNDLE_IDENTIFIER = "com.ludvigeriksson.LETimeIntervalPicker-Example"; 571 | PRODUCT_NAME = "$(TARGET_NAME)"; 572 | SWIFT_VERSION = 3.0; 573 | }; 574 | name = Release; 575 | }; 576 | 607FACF31AFB9204008FA782 /* Debug */ = { 577 | isa = XCBuildConfiguration; 578 | baseConfigurationReference = EAD2002A04CFD24F879CFCC3 /* Pods-LETimeIntervalPicker_Tests.debug.xcconfig */; 579 | buildSettings = { 580 | DEVELOPMENT_TEAM = 5GKSWD54E7; 581 | FRAMEWORK_SEARCH_PATHS = "$(inherited)"; 582 | GCC_PREPROCESSOR_DEFINITIONS = ( 583 | "DEBUG=1", 584 | "$(inherited)", 585 | ); 586 | INFOPLIST_FILE = Tests/Info.plist; 587 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 588 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 589 | PRODUCT_NAME = "$(TARGET_NAME)"; 590 | SWIFT_VERSION = 3.0; 591 | }; 592 | name = Debug; 593 | }; 594 | 607FACF41AFB9204008FA782 /* Release */ = { 595 | isa = XCBuildConfiguration; 596 | baseConfigurationReference = 5DFDFA4CB0DFFA21C440BFEE /* Pods-LETimeIntervalPicker_Tests.release.xcconfig */; 597 | buildSettings = { 598 | DEVELOPMENT_TEAM = 5GKSWD54E7; 599 | FRAMEWORK_SEARCH_PATHS = "$(inherited)"; 600 | INFOPLIST_FILE = Tests/Info.plist; 601 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 602 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 603 | PRODUCT_NAME = "$(TARGET_NAME)"; 604 | SWIFT_VERSION = 3.0; 605 | }; 606 | name = Release; 607 | }; 608 | /* End XCBuildConfiguration section */ 609 | 610 | /* Begin XCConfigurationList section */ 611 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "LETimeIntervalPicker" */ = { 612 | isa = XCConfigurationList; 613 | buildConfigurations = ( 614 | 607FACED1AFB9204008FA782 /* Debug */, 615 | 607FACEE1AFB9204008FA782 /* Release */, 616 | ); 617 | defaultConfigurationIsVisible = 0; 618 | defaultConfigurationName = Release; 619 | }; 620 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "LETimeIntervalPicker_Example" */ = { 621 | isa = XCConfigurationList; 622 | buildConfigurations = ( 623 | 607FACF01AFB9204008FA782 /* Debug */, 624 | 607FACF11AFB9204008FA782 /* Release */, 625 | ); 626 | defaultConfigurationIsVisible = 0; 627 | defaultConfigurationName = Release; 628 | }; 629 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "LETimeIntervalPicker_Tests" */ = { 630 | isa = XCConfigurationList; 631 | buildConfigurations = ( 632 | 607FACF31AFB9204008FA782 /* Debug */, 633 | 607FACF41AFB9204008FA782 /* Release */, 634 | ); 635 | defaultConfigurationIsVisible = 0; 636 | defaultConfigurationName = Release; 637 | }; 638 | /* End XCConfigurationList section */ 639 | }; 640 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 641 | } 642 | -------------------------------------------------------------------------------- /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 | 19D5032A25B5F3CA2EEC54C95FFD0033 /* LETimeIntervalPicker-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D4E8D27E7C082E90A524B92075022F05 /* LETimeIntervalPicker-dummy.m */; }; 11 | 3CA7AD8B3E182D942A5F34EDC5207DD0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; 12 | 4DA28072A9107E697A6C26B97CEEC084 /* Pods-LETimeIntervalPicker_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D3EC654656370AC03C86BADB641E1911 /* Pods-LETimeIntervalPicker_Tests-dummy.m */; }; 13 | 534C037ACD4E2EF861B1AB62CA8B3AA0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; 14 | 659FBA3FDE1EB4CF4A67F5F817DE3129 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; 15 | 83618D721EC06E00002474E5 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 83618D741EC06E00002474E5 /* InfoPlist.strings */; }; 16 | 83618D781EC06E00002474E5 /* LETimeIntervalPickerLocalizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = 83618D7A1EC06E00002474E5 /* LETimeIntervalPickerLocalizable.strings */; }; 17 | 83618D7D1EC06E01002474E5 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 83618D7F1EC06E01002474E5 /* InfoPlist.strings */; }; 18 | 83618D831EC06E02002474E5 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 83618D851EC06E02002474E5 /* InfoPlist.strings */; }; 19 | 8D9D52B2669A40AF63D480F9D1C60E9D /* LETimeIntervalPicker-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E2F8A07EBBDBF835786E485FF67C29B /* LETimeIntervalPicker-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 20 | 93DD7537B4D208C79D1AF48CF2E7A5C3 /* Pods-LETimeIntervalPicker_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BD5AA621A25EB7B9AFEC5EACF257948F /* Pods-LETimeIntervalPicker_Example-dummy.m */; }; 21 | 9DDF091973ACF1F7D3EA6C973CB3BC56 /* LETimeIntervalPicker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23E81DAF5B787D3E11B85568C0E3C05C /* LETimeIntervalPicker.swift */; }; 22 | B0BE7401F288E00BA82391C3919F7D45 /* Pods-LETimeIntervalPicker_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 90E71C51F4217CF8A403A6C5766F70DD /* Pods-LETimeIntervalPicker_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 23 | DDD93FF686488FFB409C7CE643E182AF /* Pods-LETimeIntervalPicker_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EB159E2C8D74ECFFBE6BA1074B85D2C /* Pods-LETimeIntervalPicker_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 24 | /* End PBXBuildFile section */ 25 | 26 | /* Begin PBXContainerItemProxy section */ 27 | D8263E53B69F162ACF617F0E183F30B9 /* PBXContainerItemProxy */ = { 28 | isa = PBXContainerItemProxy; 29 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 30 | proxyType = 1; 31 | remoteGlobalIDString = 2984B755CE7AC965E6FF85BD6C24BCE5; 32 | remoteInfo = LETimeIntervalPicker; 33 | }; 34 | /* End PBXContainerItemProxy section */ 35 | 36 | /* Begin PBXFileReference section */ 37 | 132AE5E0FA8DCDE202AB0D19CA8B03AF /* Pods-LETimeIntervalPicker_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LETimeIntervalPicker_Tests.debug.xcconfig"; sourceTree = ""; }; 38 | 18BD41F3AAFEC89E2E577568B7042084 /* Pods-LETimeIntervalPicker_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LETimeIntervalPicker_Example.debug.xcconfig"; sourceTree = ""; }; 39 | 23E81DAF5B787D3E11B85568C0E3C05C /* LETimeIntervalPicker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = LETimeIntervalPicker.swift; sourceTree = ""; }; 40 | 2CA5B60682F19A3F3B1DD171D6F439FA /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 41 | 2EB159E2C8D74ECFFBE6BA1074B85D2C /* Pods-LETimeIntervalPicker_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-LETimeIntervalPicker_Example-umbrella.h"; sourceTree = ""; }; 42 | 30D17CD0ECB5DDAD6032313D862BA058 /* Pods-LETimeIntervalPicker_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-LETimeIntervalPicker_Example-acknowledgements.plist"; sourceTree = ""; }; 43 | 33ED505D8BEB514A8463F0446C29A944 /* Pods_LETimeIntervalPicker_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_LETimeIntervalPicker_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 44 | 35B309999A6FD79857B37729917A27DF /* LETimeIntervalPicker.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = LETimeIntervalPicker.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 45 | 3D3754DBF54A867722A3D5D91741FCB7 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 46 | 428DC2BBB39C072574FB72CD20F54E73 /* Pods-LETimeIntervalPicker_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-LETimeIntervalPicker_Tests-acknowledgements.markdown"; sourceTree = ""; }; 47 | 4D6033BF27A68394C4373B825D9783EC /* Pods-LETimeIntervalPicker_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-LETimeIntervalPicker_Tests-resources.sh"; sourceTree = ""; }; 48 | 5EC795E5C629BACF2B699BEBA96A4369 /* Pods-LETimeIntervalPicker_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-LETimeIntervalPicker_Example-frameworks.sh"; sourceTree = ""; }; 49 | 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 50 | 6AA5AD6F2627CEA39D4354A0DAFEFFEB /* Pods-LETimeIntervalPicker_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-LETimeIntervalPicker_Tests-acknowledgements.plist"; sourceTree = ""; }; 51 | 7AA418FB9549CC2F18BC3F63A639D487 /* Pods-LETimeIntervalPicker_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-LETimeIntervalPicker_Example.modulemap"; sourceTree = ""; }; 52 | 7F9CA1A4C8D137BB90831E7510E55941 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 53 | 83618D731EC06E00002474E5 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = ""; }; 54 | 83618D791EC06E00002474E5 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/LETimeIntervalPickerLocalizable.strings; sourceTree = ""; }; 55 | 83618D7E1EC06E01002474E5 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = ""; }; 56 | 83618D841EC06E02002474E5 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/InfoPlist.strings; sourceTree = ""; }; 57 | 83618D861EC06E21002474E5 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/LETimeIntervalPickerLocalizable.strings; sourceTree = ""; }; 58 | 8E2F8A07EBBDBF835786E485FF67C29B /* LETimeIntervalPicker-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LETimeIntervalPicker-umbrella.h"; sourceTree = ""; }; 59 | 90E71C51F4217CF8A403A6C5766F70DD /* Pods-LETimeIntervalPicker_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-LETimeIntervalPicker_Tests-umbrella.h"; sourceTree = ""; }; 60 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 61 | 95DE3D841A09B1618F78483457728CCB /* LETimeIntervalPicker-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LETimeIntervalPicker-prefix.pch"; sourceTree = ""; }; 62 | A536E77B656E1A1D2C912A43DDD3D75E /* LETimeIntervalPicker.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LETimeIntervalPicker.xcconfig; sourceTree = ""; }; 63 | B70C9D976BAD918C2414F265C7867835 /* Pods-LETimeIntervalPicker_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-LETimeIntervalPicker_Example-acknowledgements.markdown"; sourceTree = ""; }; 64 | BD5AA621A25EB7B9AFEC5EACF257948F /* Pods-LETimeIntervalPicker_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-LETimeIntervalPicker_Example-dummy.m"; sourceTree = ""; }; 65 | BF732376B0220186644F403EFDB4CB55 /* Pods-LETimeIntervalPicker_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LETimeIntervalPicker_Example.release.xcconfig"; sourceTree = ""; }; 66 | C75F019C18868FEAECD43EF126B32EED /* Pods-LETimeIntervalPicker_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-LETimeIntervalPicker_Tests.modulemap"; sourceTree = ""; }; 67 | C9EEB769F1CC22B43A2AB02FBD308B3A /* Pods-LETimeIntervalPicker_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LETimeIntervalPicker_Tests.release.xcconfig"; sourceTree = ""; }; 68 | CD03C0297237CDC565469CCDBFE3488A /* Pods-LETimeIntervalPicker_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-LETimeIntervalPicker_Example-resources.sh"; sourceTree = ""; }; 69 | D09205EABB4874D3DB51B0C80D861F4D /* Pods_LETimeIntervalPicker_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_LETimeIntervalPicker_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 70 | D3EC654656370AC03C86BADB641E1911 /* Pods-LETimeIntervalPicker_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-LETimeIntervalPicker_Tests-dummy.m"; sourceTree = ""; }; 71 | D4E8D27E7C082E90A524B92075022F05 /* LETimeIntervalPicker-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "LETimeIntervalPicker-dummy.m"; sourceTree = ""; }; 72 | D5602A8DDC0F4AB58EB402ECFFA09329 /* Pods-LETimeIntervalPicker_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-LETimeIntervalPicker_Tests-frameworks.sh"; sourceTree = ""; }; 73 | D9F8720541FC8EF5EBC1BA0AA6E90F8F /* LETimeIntervalPicker.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = LETimeIntervalPicker.modulemap; sourceTree = ""; }; 74 | /* End PBXFileReference section */ 75 | 76 | /* Begin PBXFrameworksBuildPhase section */ 77 | 2953B24238B66DE7B475DE2C596EA261 /* Frameworks */ = { 78 | isa = PBXFrameworksBuildPhase; 79 | buildActionMask = 2147483647; 80 | files = ( 81 | 659FBA3FDE1EB4CF4A67F5F817DE3129 /* Foundation.framework in Frameworks */, 82 | ); 83 | runOnlyForDeploymentPostprocessing = 0; 84 | }; 85 | C2D6B69F91558E7BF86821D447CFBC6B /* Frameworks */ = { 86 | isa = PBXFrameworksBuildPhase; 87 | buildActionMask = 2147483647; 88 | files = ( 89 | 534C037ACD4E2EF861B1AB62CA8B3AA0 /* Foundation.framework in Frameworks */, 90 | ); 91 | runOnlyForDeploymentPostprocessing = 0; 92 | }; 93 | DA8031D8DD49EE322D9F30ED2F0F45DE /* Frameworks */ = { 94 | isa = PBXFrameworksBuildPhase; 95 | buildActionMask = 2147483647; 96 | files = ( 97 | 3CA7AD8B3E182D942A5F34EDC5207DD0 /* Foundation.framework in Frameworks */, 98 | ); 99 | runOnlyForDeploymentPostprocessing = 0; 100 | }; 101 | /* End PBXFrameworksBuildPhase section */ 102 | 103 | /* Begin PBXGroup section */ 104 | 0249CA8FE27756C497757C51259C956D /* LETimeIntervalPicker */ = { 105 | isa = PBXGroup; 106 | children = ( 107 | 6D343B259959831117D43075A28ACDD2 /* LETimeIntervalPicker */, 108 | E5C60B889E2EB057EAF3E03959F3F286 /* Support Files */, 109 | ); 110 | name = LETimeIntervalPicker; 111 | path = ../..; 112 | sourceTree = ""; 113 | }; 114 | 1FEFB2D30004B52F964BAFB479E79CA3 /* Development Pods */ = { 115 | isa = PBXGroup; 116 | children = ( 117 | 0249CA8FE27756C497757C51259C956D /* LETimeIntervalPicker */, 118 | ); 119 | name = "Development Pods"; 120 | sourceTree = ""; 121 | }; 122 | 369FF34913ED7AC8546CDBF6F29CF758 /* Pods-LETimeIntervalPicker_Tests */ = { 123 | isa = PBXGroup; 124 | children = ( 125 | 83618D851EC06E02002474E5 /* InfoPlist.strings */, 126 | 3D3754DBF54A867722A3D5D91741FCB7 /* Info.plist */, 127 | C75F019C18868FEAECD43EF126B32EED /* Pods-LETimeIntervalPicker_Tests.modulemap */, 128 | 428DC2BBB39C072574FB72CD20F54E73 /* Pods-LETimeIntervalPicker_Tests-acknowledgements.markdown */, 129 | 6AA5AD6F2627CEA39D4354A0DAFEFFEB /* Pods-LETimeIntervalPicker_Tests-acknowledgements.plist */, 130 | D3EC654656370AC03C86BADB641E1911 /* Pods-LETimeIntervalPicker_Tests-dummy.m */, 131 | D5602A8DDC0F4AB58EB402ECFFA09329 /* Pods-LETimeIntervalPicker_Tests-frameworks.sh */, 132 | 4D6033BF27A68394C4373B825D9783EC /* Pods-LETimeIntervalPicker_Tests-resources.sh */, 133 | 90E71C51F4217CF8A403A6C5766F70DD /* Pods-LETimeIntervalPicker_Tests-umbrella.h */, 134 | 132AE5E0FA8DCDE202AB0D19CA8B03AF /* Pods-LETimeIntervalPicker_Tests.debug.xcconfig */, 135 | C9EEB769F1CC22B43A2AB02FBD308B3A /* Pods-LETimeIntervalPicker_Tests.release.xcconfig */, 136 | ); 137 | name = "Pods-LETimeIntervalPicker_Tests"; 138 | path = "Target Support Files/Pods-LETimeIntervalPicker_Tests"; 139 | sourceTree = ""; 140 | }; 141 | 5898A26BE48B3DA4C8F85186A9091D9F /* Classes */ = { 142 | isa = PBXGroup; 143 | children = ( 144 | 23E81DAF5B787D3E11B85568C0E3C05C /* LETimeIntervalPicker.swift */, 145 | ); 146 | path = Classes; 147 | sourceTree = ""; 148 | }; 149 | 6D343B259959831117D43075A28ACDD2 /* LETimeIntervalPicker */ = { 150 | isa = PBXGroup; 151 | children = ( 152 | 5898A26BE48B3DA4C8F85186A9091D9F /* Classes */, 153 | ); 154 | path = LETimeIntervalPicker; 155 | sourceTree = ""; 156 | }; 157 | 7DB346D0F39D3F0E887471402A8071AB = { 158 | isa = PBXGroup; 159 | children = ( 160 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, 161 | 1FEFB2D30004B52F964BAFB479E79CA3 /* Development Pods */, 162 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, 163 | 89F0949C7C48492772402351BA22EC2E /* Products */, 164 | 87DC89303EE9F98FB9CC1A818C54ABF9 /* Targets Support Files */, 165 | ); 166 | sourceTree = ""; 167 | }; 168 | 87DC89303EE9F98FB9CC1A818C54ABF9 /* Targets Support Files */ = { 169 | isa = PBXGroup; 170 | children = ( 171 | C903800CCA65C1ED14F51E2F857C0A35 /* Pods-LETimeIntervalPicker_Example */, 172 | 369FF34913ED7AC8546CDBF6F29CF758 /* Pods-LETimeIntervalPicker_Tests */, 173 | ); 174 | name = "Targets Support Files"; 175 | sourceTree = ""; 176 | }; 177 | 89F0949C7C48492772402351BA22EC2E /* Products */ = { 178 | isa = PBXGroup; 179 | children = ( 180 | 35B309999A6FD79857B37729917A27DF /* LETimeIntervalPicker.framework */, 181 | D09205EABB4874D3DB51B0C80D861F4D /* Pods_LETimeIntervalPicker_Example.framework */, 182 | 33ED505D8BEB514A8463F0446C29A944 /* Pods_LETimeIntervalPicker_Tests.framework */, 183 | ); 184 | name = Products; 185 | sourceTree = ""; 186 | }; 187 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { 188 | isa = PBXGroup; 189 | children = ( 190 | D35AF013A5F0BAD4F32504907A52519E /* iOS */, 191 | ); 192 | name = Frameworks; 193 | sourceTree = ""; 194 | }; 195 | C903800CCA65C1ED14F51E2F857C0A35 /* Pods-LETimeIntervalPicker_Example */ = { 196 | isa = PBXGroup; 197 | children = ( 198 | 83618D741EC06E00002474E5 /* InfoPlist.strings */, 199 | 7F9CA1A4C8D137BB90831E7510E55941 /* Info.plist */, 200 | 7AA418FB9549CC2F18BC3F63A639D487 /* Pods-LETimeIntervalPicker_Example.modulemap */, 201 | B70C9D976BAD918C2414F265C7867835 /* Pods-LETimeIntervalPicker_Example-acknowledgements.markdown */, 202 | 30D17CD0ECB5DDAD6032313D862BA058 /* Pods-LETimeIntervalPicker_Example-acknowledgements.plist */, 203 | BD5AA621A25EB7B9AFEC5EACF257948F /* Pods-LETimeIntervalPicker_Example-dummy.m */, 204 | 5EC795E5C629BACF2B699BEBA96A4369 /* Pods-LETimeIntervalPicker_Example-frameworks.sh */, 205 | CD03C0297237CDC565469CCDBFE3488A /* Pods-LETimeIntervalPicker_Example-resources.sh */, 206 | 2EB159E2C8D74ECFFBE6BA1074B85D2C /* Pods-LETimeIntervalPicker_Example-umbrella.h */, 207 | 18BD41F3AAFEC89E2E577568B7042084 /* Pods-LETimeIntervalPicker_Example.debug.xcconfig */, 208 | BF732376B0220186644F403EFDB4CB55 /* Pods-LETimeIntervalPicker_Example.release.xcconfig */, 209 | ); 210 | name = "Pods-LETimeIntervalPicker_Example"; 211 | path = "Target Support Files/Pods-LETimeIntervalPicker_Example"; 212 | sourceTree = ""; 213 | }; 214 | D35AF013A5F0BAD4F32504907A52519E /* iOS */ = { 215 | isa = PBXGroup; 216 | children = ( 217 | 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */, 218 | ); 219 | name = iOS; 220 | sourceTree = ""; 221 | }; 222 | E5C60B889E2EB057EAF3E03959F3F286 /* Support Files */ = { 223 | isa = PBXGroup; 224 | children = ( 225 | 83618D7F1EC06E01002474E5 /* InfoPlist.strings */, 226 | 83618D7A1EC06E00002474E5 /* LETimeIntervalPickerLocalizable.strings */, 227 | 2CA5B60682F19A3F3B1DD171D6F439FA /* Info.plist */, 228 | D9F8720541FC8EF5EBC1BA0AA6E90F8F /* LETimeIntervalPicker.modulemap */, 229 | A536E77B656E1A1D2C912A43DDD3D75E /* LETimeIntervalPicker.xcconfig */, 230 | D4E8D27E7C082E90A524B92075022F05 /* LETimeIntervalPicker-dummy.m */, 231 | 95DE3D841A09B1618F78483457728CCB /* LETimeIntervalPicker-prefix.pch */, 232 | 8E2F8A07EBBDBF835786E485FF67C29B /* LETimeIntervalPicker-umbrella.h */, 233 | ); 234 | name = "Support Files"; 235 | path = "Example/Pods/Target Support Files/LETimeIntervalPicker"; 236 | sourceTree = ""; 237 | }; 238 | /* End PBXGroup section */ 239 | 240 | /* Begin PBXHeadersBuildPhase section */ 241 | 4546958165205825110ADCD4A4EBA155 /* Headers */ = { 242 | isa = PBXHeadersBuildPhase; 243 | buildActionMask = 2147483647; 244 | files = ( 245 | B0BE7401F288E00BA82391C3919F7D45 /* Pods-LETimeIntervalPicker_Tests-umbrella.h in Headers */, 246 | ); 247 | runOnlyForDeploymentPostprocessing = 0; 248 | }; 249 | 8C3AB871B915FD3C0C674B5F100899AA /* Headers */ = { 250 | isa = PBXHeadersBuildPhase; 251 | buildActionMask = 2147483647; 252 | files = ( 253 | DDD93FF686488FFB409C7CE643E182AF /* Pods-LETimeIntervalPicker_Example-umbrella.h in Headers */, 254 | ); 255 | runOnlyForDeploymentPostprocessing = 0; 256 | }; 257 | 8DA00D191D8689F4154FB6F19DBCB8E9 /* Headers */ = { 258 | isa = PBXHeadersBuildPhase; 259 | buildActionMask = 2147483647; 260 | files = ( 261 | 8D9D52B2669A40AF63D480F9D1C60E9D /* LETimeIntervalPicker-umbrella.h in Headers */, 262 | ); 263 | runOnlyForDeploymentPostprocessing = 0; 264 | }; 265 | /* End PBXHeadersBuildPhase section */ 266 | 267 | /* Begin PBXNativeTarget section */ 268 | 2984B755CE7AC965E6FF85BD6C24BCE5 /* LETimeIntervalPicker */ = { 269 | isa = PBXNativeTarget; 270 | buildConfigurationList = 09DFDA203DCBDCE62CBA1191F7DC62A3 /* Build configuration list for PBXNativeTarget "LETimeIntervalPicker" */; 271 | buildPhases = ( 272 | A6C97EB64A347F9BF5B966173994CF94 /* Sources */, 273 | DA8031D8DD49EE322D9F30ED2F0F45DE /* Frameworks */, 274 | 8DA00D191D8689F4154FB6F19DBCB8E9 /* Headers */, 275 | 83618D771EC06E00002474E5 /* Resources */, 276 | ); 277 | buildRules = ( 278 | ); 279 | dependencies = ( 280 | ); 281 | name = LETimeIntervalPicker; 282 | productName = LETimeIntervalPicker; 283 | productReference = 35B309999A6FD79857B37729917A27DF /* LETimeIntervalPicker.framework */; 284 | productType = "com.apple.product-type.framework"; 285 | }; 286 | 8BDDC07AF70A4F911DA5561E1275A4C4 /* Pods-LETimeIntervalPicker_Tests */ = { 287 | isa = PBXNativeTarget; 288 | buildConfigurationList = 71CF2EEB2664C707A1683DDD26411B8A /* Build configuration list for PBXNativeTarget "Pods-LETimeIntervalPicker_Tests" */; 289 | buildPhases = ( 290 | ABE989367FC238DD4BB88BB83BDA00EB /* Sources */, 291 | C2D6B69F91558E7BF86821D447CFBC6B /* Frameworks */, 292 | 4546958165205825110ADCD4A4EBA155 /* Headers */, 293 | 83618D821EC06E01002474E5 /* Resources */, 294 | ); 295 | buildRules = ( 296 | ); 297 | dependencies = ( 298 | ); 299 | name = "Pods-LETimeIntervalPicker_Tests"; 300 | productName = "Pods-LETimeIntervalPicker_Tests"; 301 | productReference = 33ED505D8BEB514A8463F0446C29A944 /* Pods_LETimeIntervalPicker_Tests.framework */; 302 | productType = "com.apple.product-type.framework"; 303 | }; 304 | CF938C53465E64EE67CD5AFA7CD19808 /* Pods-LETimeIntervalPicker_Example */ = { 305 | isa = PBXNativeTarget; 306 | buildConfigurationList = 79CE4508911EEDD933B72FAEE7461998 /* Build configuration list for PBXNativeTarget "Pods-LETimeIntervalPicker_Example" */; 307 | buildPhases = ( 308 | 222094C803F2BD1D2CF8B91EED6CBE65 /* Sources */, 309 | 2953B24238B66DE7B475DE2C596EA261 /* Frameworks */, 310 | 8C3AB871B915FD3C0C674B5F100899AA /* Headers */, 311 | 83618D711EC06DFF002474E5 /* Resources */, 312 | ); 313 | buildRules = ( 314 | ); 315 | dependencies = ( 316 | 8ACAA1C0AC24A9BC72C6CA1A0F691A35 /* PBXTargetDependency */, 317 | ); 318 | name = "Pods-LETimeIntervalPicker_Example"; 319 | productName = "Pods-LETimeIntervalPicker_Example"; 320 | productReference = D09205EABB4874D3DB51B0C80D861F4D /* Pods_LETimeIntervalPicker_Example.framework */; 321 | productType = "com.apple.product-type.framework"; 322 | }; 323 | /* End PBXNativeTarget section */ 324 | 325 | /* Begin PBXProject section */ 326 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 327 | isa = PBXProject; 328 | attributes = { 329 | LastSwiftUpdateCheck = 0830; 330 | LastUpgradeCheck = 0700; 331 | }; 332 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 333 | compatibilityVersion = "Xcode 3.2"; 334 | developmentRegion = English; 335 | hasScannedForEncodings = 0; 336 | knownRegions = ( 337 | en, 338 | sv, 339 | ); 340 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 341 | productRefGroup = 89F0949C7C48492772402351BA22EC2E /* Products */; 342 | projectDirPath = ""; 343 | projectRoot = ""; 344 | targets = ( 345 | 2984B755CE7AC965E6FF85BD6C24BCE5 /* LETimeIntervalPicker */, 346 | CF938C53465E64EE67CD5AFA7CD19808 /* Pods-LETimeIntervalPicker_Example */, 347 | 8BDDC07AF70A4F911DA5561E1275A4C4 /* Pods-LETimeIntervalPicker_Tests */, 348 | ); 349 | }; 350 | /* End PBXProject section */ 351 | 352 | /* Begin PBXResourcesBuildPhase section */ 353 | 83618D711EC06DFF002474E5 /* Resources */ = { 354 | isa = PBXResourcesBuildPhase; 355 | buildActionMask = 2147483647; 356 | files = ( 357 | 83618D721EC06E00002474E5 /* InfoPlist.strings in Resources */, 358 | ); 359 | runOnlyForDeploymentPostprocessing = 0; 360 | }; 361 | 83618D771EC06E00002474E5 /* Resources */ = { 362 | isa = PBXResourcesBuildPhase; 363 | buildActionMask = 2147483647; 364 | files = ( 365 | 83618D781EC06E00002474E5 /* LETimeIntervalPickerLocalizable.strings in Resources */, 366 | 83618D7D1EC06E01002474E5 /* InfoPlist.strings in Resources */, 367 | ); 368 | runOnlyForDeploymentPostprocessing = 0; 369 | }; 370 | 83618D821EC06E01002474E5 /* Resources */ = { 371 | isa = PBXResourcesBuildPhase; 372 | buildActionMask = 2147483647; 373 | files = ( 374 | 83618D831EC06E02002474E5 /* InfoPlist.strings in Resources */, 375 | ); 376 | runOnlyForDeploymentPostprocessing = 0; 377 | }; 378 | /* End PBXResourcesBuildPhase section */ 379 | 380 | /* Begin PBXSourcesBuildPhase section */ 381 | 222094C803F2BD1D2CF8B91EED6CBE65 /* Sources */ = { 382 | isa = PBXSourcesBuildPhase; 383 | buildActionMask = 2147483647; 384 | files = ( 385 | 93DD7537B4D208C79D1AF48CF2E7A5C3 /* Pods-LETimeIntervalPicker_Example-dummy.m in Sources */, 386 | ); 387 | runOnlyForDeploymentPostprocessing = 0; 388 | }; 389 | A6C97EB64A347F9BF5B966173994CF94 /* Sources */ = { 390 | isa = PBXSourcesBuildPhase; 391 | buildActionMask = 2147483647; 392 | files = ( 393 | 19D5032A25B5F3CA2EEC54C95FFD0033 /* LETimeIntervalPicker-dummy.m in Sources */, 394 | 9DDF091973ACF1F7D3EA6C973CB3BC56 /* LETimeIntervalPicker.swift in Sources */, 395 | ); 396 | runOnlyForDeploymentPostprocessing = 0; 397 | }; 398 | ABE989367FC238DD4BB88BB83BDA00EB /* Sources */ = { 399 | isa = PBXSourcesBuildPhase; 400 | buildActionMask = 2147483647; 401 | files = ( 402 | 4DA28072A9107E697A6C26B97CEEC084 /* Pods-LETimeIntervalPicker_Tests-dummy.m in Sources */, 403 | ); 404 | runOnlyForDeploymentPostprocessing = 0; 405 | }; 406 | /* End PBXSourcesBuildPhase section */ 407 | 408 | /* Begin PBXTargetDependency section */ 409 | 8ACAA1C0AC24A9BC72C6CA1A0F691A35 /* PBXTargetDependency */ = { 410 | isa = PBXTargetDependency; 411 | name = LETimeIntervalPicker; 412 | target = 2984B755CE7AC965E6FF85BD6C24BCE5 /* LETimeIntervalPicker */; 413 | targetProxy = D8263E53B69F162ACF617F0E183F30B9 /* PBXContainerItemProxy */; 414 | }; 415 | /* End PBXTargetDependency section */ 416 | 417 | /* Begin PBXVariantGroup section */ 418 | 83618D741EC06E00002474E5 /* InfoPlist.strings */ = { 419 | isa = PBXVariantGroup; 420 | children = ( 421 | 83618D731EC06E00002474E5 /* sv */, 422 | ); 423 | name = InfoPlist.strings; 424 | sourceTree = ""; 425 | }; 426 | 83618D7A1EC06E00002474E5 /* LETimeIntervalPickerLocalizable.strings */ = { 427 | isa = PBXVariantGroup; 428 | children = ( 429 | 83618D791EC06E00002474E5 /* sv */, 430 | 83618D861EC06E21002474E5 /* en */, 431 | ); 432 | name = LETimeIntervalPickerLocalizable.strings; 433 | sourceTree = ""; 434 | }; 435 | 83618D7F1EC06E01002474E5 /* InfoPlist.strings */ = { 436 | isa = PBXVariantGroup; 437 | children = ( 438 | 83618D7E1EC06E01002474E5 /* sv */, 439 | ); 440 | name = InfoPlist.strings; 441 | sourceTree = ""; 442 | }; 443 | 83618D851EC06E02002474E5 /* InfoPlist.strings */ = { 444 | isa = PBXVariantGroup; 445 | children = ( 446 | 83618D841EC06E02002474E5 /* sv */, 447 | ); 448 | name = InfoPlist.strings; 449 | sourceTree = ""; 450 | }; 451 | /* End PBXVariantGroup section */ 452 | 453 | /* Begin XCBuildConfiguration section */ 454 | 345CC476DF4A7516DBD2220CF5035FF3 /* Debug */ = { 455 | isa = XCBuildConfiguration; 456 | buildSettings = { 457 | ALWAYS_SEARCH_USER_PATHS = NO; 458 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 459 | CLANG_ANALYZER_NONNULL = YES; 460 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES; 461 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 462 | CLANG_CXX_LIBRARY = "libc++"; 463 | CLANG_ENABLE_MODULES = YES; 464 | CLANG_ENABLE_OBJC_ARC = YES; 465 | CLANG_WARN_BOOL_CONVERSION = YES; 466 | CLANG_WARN_CONSTANT_CONVERSION = YES; 467 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 468 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 469 | CLANG_WARN_EMPTY_BODY = YES; 470 | CLANG_WARN_ENUM_CONVERSION = YES; 471 | CLANG_WARN_INFINITE_RECURSION = YES; 472 | CLANG_WARN_INT_CONVERSION = YES; 473 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 474 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 475 | CLANG_WARN_UNREACHABLE_CODE = YES; 476 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 477 | CODE_SIGNING_REQUIRED = NO; 478 | COPY_PHASE_STRIP = NO; 479 | ENABLE_TESTABILITY = YES; 480 | GCC_C_LANGUAGE_STANDARD = gnu99; 481 | GCC_DYNAMIC_NO_PIC = NO; 482 | GCC_OPTIMIZATION_LEVEL = 0; 483 | GCC_PREPROCESSOR_DEFINITIONS = ( 484 | "POD_CONFIGURATION_DEBUG=1", 485 | "DEBUG=1", 486 | "$(inherited)", 487 | ); 488 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 489 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 490 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 491 | GCC_WARN_UNDECLARED_SELECTOR = YES; 492 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 493 | GCC_WARN_UNUSED_FUNCTION = YES; 494 | GCC_WARN_UNUSED_VARIABLE = YES; 495 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 496 | ONLY_ACTIVE_ARCH = YES; 497 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 498 | STRIP_INSTALLED_PRODUCT = NO; 499 | SYMROOT = "${SRCROOT}/../build"; 500 | }; 501 | name = Debug; 502 | }; 503 | 717E77604BFBB04BEAF56608A1CB2EDE /* Release */ = { 504 | isa = XCBuildConfiguration; 505 | buildSettings = { 506 | ALWAYS_SEARCH_USER_PATHS = NO; 507 | CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; 508 | CLANG_ANALYZER_NONNULL = YES; 509 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES; 510 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 511 | CLANG_CXX_LIBRARY = "libc++"; 512 | CLANG_ENABLE_MODULES = YES; 513 | CLANG_ENABLE_OBJC_ARC = YES; 514 | CLANG_WARN_BOOL_CONVERSION = YES; 515 | CLANG_WARN_CONSTANT_CONVERSION = YES; 516 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; 517 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 518 | CLANG_WARN_EMPTY_BODY = YES; 519 | CLANG_WARN_ENUM_CONVERSION = YES; 520 | CLANG_WARN_INFINITE_RECURSION = YES; 521 | CLANG_WARN_INT_CONVERSION = YES; 522 | CLANG_WARN_OBJC_ROOT_CLASS = YES; 523 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 524 | CLANG_WARN_UNREACHABLE_CODE = YES; 525 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 526 | CODE_SIGNING_REQUIRED = NO; 527 | COPY_PHASE_STRIP = YES; 528 | ENABLE_NS_ASSERTIONS = NO; 529 | GCC_C_LANGUAGE_STANDARD = gnu99; 530 | GCC_PREPROCESSOR_DEFINITIONS = ( 531 | "POD_CONFIGURATION_RELEASE=1", 532 | "$(inherited)", 533 | ); 534 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 535 | GCC_WARN_ABOUT_RETURN_TYPE = YES; 536 | GCC_WARN_UNDECLARED_SELECTOR = YES; 537 | GCC_WARN_UNINITIALIZED_AUTOS = YES; 538 | GCC_WARN_UNUSED_FUNCTION = YES; 539 | GCC_WARN_UNUSED_VARIABLE = YES; 540 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 541 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 542 | STRIP_INSTALLED_PRODUCT = NO; 543 | SYMROOT = "${SRCROOT}/../build"; 544 | VALIDATE_PRODUCT = YES; 545 | }; 546 | name = Release; 547 | }; 548 | 78FEBDCACD169688E5658DE520137BC0 /* Debug */ = { 549 | isa = XCBuildConfiguration; 550 | baseConfigurationReference = A536E77B656E1A1D2C912A43DDD3D75E /* LETimeIntervalPicker.xcconfig */; 551 | buildSettings = { 552 | CODE_SIGN_IDENTITY = ""; 553 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 554 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 555 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 556 | CURRENT_PROJECT_VERSION = 1; 557 | DEBUG_INFORMATION_FORMAT = dwarf; 558 | DEFINES_MODULE = YES; 559 | DYLIB_COMPATIBILITY_VERSION = 1; 560 | DYLIB_CURRENT_VERSION = 1; 561 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 562 | ENABLE_STRICT_OBJC_MSGSEND = YES; 563 | GCC_NO_COMMON_BLOCKS = YES; 564 | GCC_PREFIX_HEADER = "Target Support Files/LETimeIntervalPicker/LETimeIntervalPicker-prefix.pch"; 565 | INFOPLIST_FILE = "Target Support Files/LETimeIntervalPicker/Info.plist"; 566 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 567 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 568 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 569 | MODULEMAP_FILE = "Target Support Files/LETimeIntervalPicker/LETimeIntervalPicker.modulemap"; 570 | MTL_ENABLE_DEBUG_INFO = YES; 571 | PRODUCT_NAME = LETimeIntervalPicker; 572 | SDKROOT = iphoneos; 573 | SKIP_INSTALL = YES; 574 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 575 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 576 | SWIFT_VERSION = 3.0; 577 | TARGETED_DEVICE_FAMILY = "1,2"; 578 | VERSIONING_SYSTEM = "apple-generic"; 579 | VERSION_INFO_PREFIX = ""; 580 | }; 581 | name = Debug; 582 | }; 583 | 89D8B124E39DBC1D4A5790ABA7C1B028 /* Debug */ = { 584 | isa = XCBuildConfiguration; 585 | baseConfigurationReference = 18BD41F3AAFEC89E2E577568B7042084 /* Pods-LETimeIntervalPicker_Example.debug.xcconfig */; 586 | buildSettings = { 587 | CODE_SIGN_IDENTITY = ""; 588 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 589 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 590 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 591 | CURRENT_PROJECT_VERSION = 1; 592 | DEBUG_INFORMATION_FORMAT = dwarf; 593 | DEFINES_MODULE = YES; 594 | DYLIB_COMPATIBILITY_VERSION = 1; 595 | DYLIB_CURRENT_VERSION = 1; 596 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 597 | ENABLE_STRICT_OBJC_MSGSEND = YES; 598 | GCC_NO_COMMON_BLOCKS = YES; 599 | INFOPLIST_FILE = "Target Support Files/Pods-LETimeIntervalPicker_Example/Info.plist"; 600 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 601 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 602 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 603 | MACH_O_TYPE = staticlib; 604 | MODULEMAP_FILE = "Target Support Files/Pods-LETimeIntervalPicker_Example/Pods-LETimeIntervalPicker_Example.modulemap"; 605 | MTL_ENABLE_DEBUG_INFO = YES; 606 | OTHER_LDFLAGS = ""; 607 | OTHER_LIBTOOLFLAGS = ""; 608 | PODS_ROOT = "$(SRCROOT)"; 609 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 610 | PRODUCT_NAME = Pods_LETimeIntervalPicker_Example; 611 | SDKROOT = iphoneos; 612 | SKIP_INSTALL = YES; 613 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 614 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 615 | SWIFT_VERSION = 3.0; 616 | TARGETED_DEVICE_FAMILY = "1,2"; 617 | VERSIONING_SYSTEM = "apple-generic"; 618 | VERSION_INFO_PREFIX = ""; 619 | }; 620 | name = Debug; 621 | }; 622 | 917E42A0C31FF7F362D540B36E4AEB79 /* Release */ = { 623 | isa = XCBuildConfiguration; 624 | baseConfigurationReference = BF732376B0220186644F403EFDB4CB55 /* Pods-LETimeIntervalPicker_Example.release.xcconfig */; 625 | buildSettings = { 626 | CODE_SIGN_IDENTITY = ""; 627 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 628 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 629 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 630 | CURRENT_PROJECT_VERSION = 1; 631 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 632 | DEFINES_MODULE = YES; 633 | DYLIB_COMPATIBILITY_VERSION = 1; 634 | DYLIB_CURRENT_VERSION = 1; 635 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 636 | ENABLE_STRICT_OBJC_MSGSEND = YES; 637 | GCC_NO_COMMON_BLOCKS = YES; 638 | INFOPLIST_FILE = "Target Support Files/Pods-LETimeIntervalPicker_Example/Info.plist"; 639 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 640 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 641 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 642 | MACH_O_TYPE = staticlib; 643 | MODULEMAP_FILE = "Target Support Files/Pods-LETimeIntervalPicker_Example/Pods-LETimeIntervalPicker_Example.modulemap"; 644 | MTL_ENABLE_DEBUG_INFO = NO; 645 | OTHER_LDFLAGS = ""; 646 | OTHER_LIBTOOLFLAGS = ""; 647 | PODS_ROOT = "$(SRCROOT)"; 648 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 649 | PRODUCT_NAME = Pods_LETimeIntervalPicker_Example; 650 | SDKROOT = iphoneos; 651 | SKIP_INSTALL = YES; 652 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 653 | SWIFT_VERSION = 3.0; 654 | TARGETED_DEVICE_FAMILY = "1,2"; 655 | VERSIONING_SYSTEM = "apple-generic"; 656 | VERSION_INFO_PREFIX = ""; 657 | }; 658 | name = Release; 659 | }; 660 | A20DA292A0BD75C9DA847B43C4E224EA /* Release */ = { 661 | isa = XCBuildConfiguration; 662 | baseConfigurationReference = A536E77B656E1A1D2C912A43DDD3D75E /* LETimeIntervalPicker.xcconfig */; 663 | buildSettings = { 664 | CODE_SIGN_IDENTITY = ""; 665 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 666 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 667 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 668 | CURRENT_PROJECT_VERSION = 1; 669 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 670 | DEFINES_MODULE = YES; 671 | DYLIB_COMPATIBILITY_VERSION = 1; 672 | DYLIB_CURRENT_VERSION = 1; 673 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 674 | ENABLE_STRICT_OBJC_MSGSEND = YES; 675 | GCC_NO_COMMON_BLOCKS = YES; 676 | GCC_PREFIX_HEADER = "Target Support Files/LETimeIntervalPicker/LETimeIntervalPicker-prefix.pch"; 677 | INFOPLIST_FILE = "Target Support Files/LETimeIntervalPicker/Info.plist"; 678 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 679 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 680 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 681 | MODULEMAP_FILE = "Target Support Files/LETimeIntervalPicker/LETimeIntervalPicker.modulemap"; 682 | MTL_ENABLE_DEBUG_INFO = NO; 683 | PRODUCT_NAME = LETimeIntervalPicker; 684 | SDKROOT = iphoneos; 685 | SKIP_INSTALL = YES; 686 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 687 | SWIFT_VERSION = 3.0; 688 | TARGETED_DEVICE_FAMILY = "1,2"; 689 | VERSIONING_SYSTEM = "apple-generic"; 690 | VERSION_INFO_PREFIX = ""; 691 | }; 692 | name = Release; 693 | }; 694 | D235707B668EC6BAAC62779C83362A7A /* Release */ = { 695 | isa = XCBuildConfiguration; 696 | baseConfigurationReference = C9EEB769F1CC22B43A2AB02FBD308B3A /* Pods-LETimeIntervalPicker_Tests.release.xcconfig */; 697 | buildSettings = { 698 | CODE_SIGN_IDENTITY = ""; 699 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 700 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 701 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 702 | CURRENT_PROJECT_VERSION = 1; 703 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 704 | DEFINES_MODULE = YES; 705 | DYLIB_COMPATIBILITY_VERSION = 1; 706 | DYLIB_CURRENT_VERSION = 1; 707 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 708 | ENABLE_STRICT_OBJC_MSGSEND = YES; 709 | GCC_NO_COMMON_BLOCKS = YES; 710 | INFOPLIST_FILE = "Target Support Files/Pods-LETimeIntervalPicker_Tests/Info.plist"; 711 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 712 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 713 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 714 | MACH_O_TYPE = staticlib; 715 | MODULEMAP_FILE = "Target Support Files/Pods-LETimeIntervalPicker_Tests/Pods-LETimeIntervalPicker_Tests.modulemap"; 716 | MTL_ENABLE_DEBUG_INFO = NO; 717 | OTHER_LDFLAGS = ""; 718 | OTHER_LIBTOOLFLAGS = ""; 719 | PODS_ROOT = "$(SRCROOT)"; 720 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 721 | PRODUCT_NAME = Pods_LETimeIntervalPicker_Tests; 722 | SDKROOT = iphoneos; 723 | SKIP_INSTALL = YES; 724 | TARGETED_DEVICE_FAMILY = "1,2"; 725 | VERSIONING_SYSTEM = "apple-generic"; 726 | VERSION_INFO_PREFIX = ""; 727 | }; 728 | name = Release; 729 | }; 730 | E502613A16E28FD7BF257C9864DF0181 /* Debug */ = { 731 | isa = XCBuildConfiguration; 732 | baseConfigurationReference = 132AE5E0FA8DCDE202AB0D19CA8B03AF /* Pods-LETimeIntervalPicker_Tests.debug.xcconfig */; 733 | buildSettings = { 734 | CODE_SIGN_IDENTITY = ""; 735 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 736 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 737 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 738 | CURRENT_PROJECT_VERSION = 1; 739 | DEBUG_INFORMATION_FORMAT = dwarf; 740 | DEFINES_MODULE = YES; 741 | DYLIB_COMPATIBILITY_VERSION = 1; 742 | DYLIB_CURRENT_VERSION = 1; 743 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 744 | ENABLE_STRICT_OBJC_MSGSEND = YES; 745 | GCC_NO_COMMON_BLOCKS = YES; 746 | INFOPLIST_FILE = "Target Support Files/Pods-LETimeIntervalPicker_Tests/Info.plist"; 747 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 748 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 749 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 750 | MACH_O_TYPE = staticlib; 751 | MODULEMAP_FILE = "Target Support Files/Pods-LETimeIntervalPicker_Tests/Pods-LETimeIntervalPicker_Tests.modulemap"; 752 | MTL_ENABLE_DEBUG_INFO = YES; 753 | OTHER_LDFLAGS = ""; 754 | OTHER_LIBTOOLFLAGS = ""; 755 | PODS_ROOT = "$(SRCROOT)"; 756 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 757 | PRODUCT_NAME = Pods_LETimeIntervalPicker_Tests; 758 | SDKROOT = iphoneos; 759 | SKIP_INSTALL = YES; 760 | TARGETED_DEVICE_FAMILY = "1,2"; 761 | VERSIONING_SYSTEM = "apple-generic"; 762 | VERSION_INFO_PREFIX = ""; 763 | }; 764 | name = Debug; 765 | }; 766 | /* End XCBuildConfiguration section */ 767 | 768 | /* Begin XCConfigurationList section */ 769 | 09DFDA203DCBDCE62CBA1191F7DC62A3 /* Build configuration list for PBXNativeTarget "LETimeIntervalPicker" */ = { 770 | isa = XCConfigurationList; 771 | buildConfigurations = ( 772 | 78FEBDCACD169688E5658DE520137BC0 /* Debug */, 773 | A20DA292A0BD75C9DA847B43C4E224EA /* Release */, 774 | ); 775 | defaultConfigurationIsVisible = 0; 776 | defaultConfigurationName = Release; 777 | }; 778 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 779 | isa = XCConfigurationList; 780 | buildConfigurations = ( 781 | 345CC476DF4A7516DBD2220CF5035FF3 /* Debug */, 782 | 717E77604BFBB04BEAF56608A1CB2EDE /* Release */, 783 | ); 784 | defaultConfigurationIsVisible = 0; 785 | defaultConfigurationName = Release; 786 | }; 787 | 71CF2EEB2664C707A1683DDD26411B8A /* Build configuration list for PBXNativeTarget "Pods-LETimeIntervalPicker_Tests" */ = { 788 | isa = XCConfigurationList; 789 | buildConfigurations = ( 790 | E502613A16E28FD7BF257C9864DF0181 /* Debug */, 791 | D235707B668EC6BAAC62779C83362A7A /* Release */, 792 | ); 793 | defaultConfigurationIsVisible = 0; 794 | defaultConfigurationName = Release; 795 | }; 796 | 79CE4508911EEDD933B72FAEE7461998 /* Build configuration list for PBXNativeTarget "Pods-LETimeIntervalPicker_Example" */ = { 797 | isa = XCConfigurationList; 798 | buildConfigurations = ( 799 | 89D8B124E39DBC1D4A5790ABA7C1B028 /* Debug */, 800 | 917E42A0C31FF7F362D540B36E4AEB79 /* Release */, 801 | ); 802 | defaultConfigurationIsVisible = 0; 803 | defaultConfigurationName = Release; 804 | }; 805 | /* End XCConfigurationList section */ 806 | }; 807 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 808 | } 809 | --------------------------------------------------------------------------------