├── LXDTimerManager ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── structure │ ├── LXDBaseHashmap.h │ ├── LXDBaseHashmap.mm │ ├── LXDReceiverHashmap.h │ ├── LXDTimerStructure.h │ └── LXDReceiverHashmap.mm │ └── object-c │ ├── NSObject+PerformTimer.m │ ├── NSObject+PerformTimer.h │ ├── LXDTimerManager.h │ └── LXDTimerManager.mm ├── _Pods.xcodeproj ├── Example ├── Tests │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── Tests-Prefix.pch │ ├── Tests-Info.plist │ └── Tests.m ├── LXDTimerManager │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── LXDViewController.h │ ├── LXDAppDelegate.h │ ├── LXDTimerManager-Prefix.pch │ ├── main.m │ ├── LXDViewController.m │ ├── LXDTimerManager-Info.plist │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ └── LXDAppDelegate.m ├── Pods │ ├── Target Support Files │ │ ├── LXDTimerManager │ │ │ ├── LXDTimerManager.modulemap │ │ │ ├── LXDTimerManager-dummy.m │ │ │ ├── LXDTimerManager-prefix.pch │ │ │ ├── LXDTimerManager-umbrella.h │ │ │ ├── LXDTimerManager.xcconfig │ │ │ └── Info.plist │ │ ├── Pods-LXDTimerManager_Tests │ │ │ ├── Pods-LXDTimerManager_Tests-acknowledgements.markdown │ │ │ ├── Pods-LXDTimerManager_Tests.modulemap │ │ │ ├── Pods-LXDTimerManager_Tests-dummy.m │ │ │ ├── Pods-LXDTimerManager_Tests-umbrella.h │ │ │ ├── Pods-LXDTimerManager_Tests.debug.xcconfig │ │ │ ├── Pods-LXDTimerManager_Tests.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-LXDTimerManager_Tests-acknowledgements.plist │ │ │ ├── Pods-LXDTimerManager_Tests-frameworks.sh │ │ │ └── Pods-LXDTimerManager_Tests-resources.sh │ │ └── Pods-LXDTimerManager_Example │ │ │ ├── Pods-LXDTimerManager_Example.modulemap │ │ │ ├── Pods-LXDTimerManager_Example-dummy.m │ │ │ ├── Pods-LXDTimerManager_Example-umbrella.h │ │ │ ├── Pods-LXDTimerManager_Example.debug.xcconfig │ │ │ ├── Pods-LXDTimerManager_Example.release.xcconfig │ │ │ ├── Info.plist │ │ │ ├── Pods-LXDTimerManager_Example-acknowledgements.markdown │ │ │ ├── Pods-LXDTimerManager_Example-acknowledgements.plist │ │ │ ├── Pods-LXDTimerManager_Example-frameworks.sh │ │ │ └── Pods-LXDTimerManager_Example-resources.sh │ ├── Manifest.lock │ ├── Local Podspecs │ │ └── LXDTimerManager.podspec.json │ └── Pods.xcodeproj │ │ └── project.pbxproj ├── Podfile ├── LXDTimerManager.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── LXDTimerManager-Example.xcscheme │ └── project.pbxproj ├── LXDTimerManager.xcworkspace │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── contents.xcworkspacedata └── Podfile.lock ├── .travis.yml ├── .gitignore ├── README.md ├── LICENSE └── LXDTimerManager.podspec /LXDTimerManager/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LXDTimerManager/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/LXDTimerManager/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- 1 | // The contents of this file are implicitly included at the beginning of every test case source file. 2 | 3 | #ifdef __OBJC__ 4 | 5 | 6 | 7 | #endif 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LXDTimerManager/LXDTimerManager.modulemap: -------------------------------------------------------------------------------- 1 | framework module LXDTimerManager { 2 | umbrella header "LXDTimerManager-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LXDTimerManager/LXDTimerManager-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_LXDTimerManager : NSObject 3 | @end 4 | @implementation PodsDummy_LXDTimerManager 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'LXDTimerManager_Example' do 4 | pod 'LXDTimerManager', :path => '../' 5 | 6 | target 'LXDTimerManager_Tests' do 7 | inherit! :search_paths 8 | 9 | 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LXDTimerManager_Tests/Pods-LXDTimerManager_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/Pods/Target Support Files/Pods-LXDTimerManager_Tests/Pods-LXDTimerManager_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_LXDTimerManager_Tests { 2 | umbrella header "Pods-LXDTimerManager_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/LXDTimerManager.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LXDTimerManager_Example/Pods-LXDTimerManager_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_LXDTimerManager_Example { 2 | umbrella header "Pods-LXDTimerManager_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LXDTimerManager_Tests/Pods-LXDTimerManager_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_LXDTimerManager_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_LXDTimerManager_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LXDTimerManager_Example/Pods-LXDTimerManager_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_LXDTimerManager_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_LXDTimerManager_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LXDTimerManager/LXDTimerManager-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/LXDTimerManager.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/LXDTimerManager/LXDViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LXDViewController.h 3 | // LXDTimerManager 4 | // 5 | // Created by JustkeepRunning on 01/05/2018. 6 | // Copyright (c) 2018 JustkeepRunning. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | 11 | @interface LXDViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Example/LXDTimerManager.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - LXDTimerManager (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - LXDTimerManager (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | LXDTimerManager: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | LXDTimerManager: 9cb14bc9a589f3ca75e0402ea63e77bd9c638461 13 | 14 | PODFILE CHECKSUM: 6b0fd7b0974beb2b11a6d712acdeec669bdcb5ea 15 | 16 | COCOAPODS: 1.3.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - LXDTimerManager (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - LXDTimerManager (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | LXDTimerManager: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | LXDTimerManager: 9cb14bc9a589f3ca75e0402ea63e77bd9c638461 13 | 14 | PODFILE CHECKSUM: 6b0fd7b0974beb2b11a6d712acdeec669bdcb5ea 15 | 16 | COCOAPODS: 1.3.1 17 | -------------------------------------------------------------------------------- /Example/LXDTimerManager/LXDAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // LXDAppDelegate.h 3 | // LXDTimerManager 4 | // 5 | // Created by JustkeepRunning on 01/05/2018. 6 | // Copyright (c) 2018 JustkeepRunning. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | 11 | @interface LXDAppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Example/LXDTimerManager/LXDTimerManager-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #import 8 | 9 | #ifndef __IPHONE_5_0 10 | #warning "This project uses features only available in iOS SDK 5.0 and later." 11 | #endif 12 | 13 | #ifdef __OBJC__ 14 | @import UIKit; 15 | @import Foundation; 16 | #endif 17 | -------------------------------------------------------------------------------- /Example/LXDTimerManager/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // LXDTimerManager 4 | // 5 | // Created by JustkeepRunning on 01/05/2018. 6 | // Copyright (c) 2018 JustkeepRunning. All rights reserved. 7 | // 8 | 9 | @import UIKit; 10 | #import "LXDAppDelegate.h" 11 | 12 | 13 | int main(int argc, char * argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([LXDAppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LXDTimerManager/LXDTimerManager-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 LXDTimerManagerVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char LXDTimerManagerVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LXDTimerManager_Tests/Pods-LXDTimerManager_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_LXDTimerManager_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_LXDTimerManager_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LXDTimerManager_Example/Pods-LXDTimerManager_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_LXDTimerManager_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_LXDTimerManager_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LXDTimerManager/LXDTimerManager.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/LXDTimerManager 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | PODS_BUILD_DIR = $BUILD_DIR 5 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | -------------------------------------------------------------------------------- /.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: xcode7.3 6 | language: objective-c 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 -enableCodeCoverage YES -workspace Example/LXDTimerManager.xcworkspace -scheme LXDTimerManager-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LXDTimerManager_Tests/Pods-LXDTimerManager_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/LXDTimerManager" 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/LXDTimerManager/LXDTimerManager.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-LXDTimerManager_Tests/Pods-LXDTimerManager_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/LXDTimerManager" 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/LXDTimerManager/LXDTimerManager.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/LXDTimerManager.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "LXDTimerManager", 3 | "version": "0.1.0", 4 | "summary": "A short description of LXDTimerManager.", 5 | "description": "TODO: Add long description of the pod here.", 6 | "homepage": "https://github.com/JustkeepRunning/LXDTimerManager", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "JustkeepRunning": "634893985@qq.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/JustkeepRunning/LXDTimerManager.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "8.0" 20 | }, 21 | "source_files": "LXDTimerManager/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LXDTimerManager_Example/Pods-LXDTimerManager_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/LXDTimerManager" 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/LXDTimerManager/LXDTimerManager.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -framework "LXDTimerManager" 6 | PODS_BUILD_DIR = $BUILD_DIR 7 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LXDTimerManager_Example/Pods-LXDTimerManager_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/LXDTimerManager" 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/LXDTimerManager/LXDTimerManager.framework/Headers" 5 | OTHER_LDFLAGS = $(inherited) -framework "LXDTimerManager" 6 | PODS_BUILD_DIR = $BUILD_DIR 7 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 8 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 9 | PODS_ROOT = ${SRCROOT}/Pods 10 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /LXDTimerManager/Classes/structure/LXDBaseHashmap.h: -------------------------------------------------------------------------------- 1 | // 2 | // LXDBaseHashmap.h 3 | // LXDTimerManager 4 | // 5 | // Created by didi on 2018/1/5. 6 | // Copyright © 2018年 didi. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | 13 | /*! 14 | * @structure hash_entry_t 15 | * hash表实体结构 16 | * 17 | * @var entry 存储的数据指针 18 | */ 19 | typedef struct hash_entry_t { 20 | void *entry; 21 | } hash_entry_t; 22 | 23 | 24 | /*! 25 | * @class LXDBaseHashmap 26 | * hash表类 27 | */ 28 | class LXDBaseHashmap { 29 | public: 30 | LXDBaseHashmap(); 31 | virtual ~LXDBaseHashmap(); 32 | unsigned int entries_count; 33 | hash_entry_t *hash_entries; 34 | 35 | protected: 36 | unsigned int obj_hash_code(void *obj); 37 | }; 38 | -------------------------------------------------------------------------------- /Example/Tests/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 | CFBundlePackageType 14 | BNDL 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1 21 | 22 | 23 | -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- 1 | // 2 | // LXDTimerManagerTests.m 3 | // LXDTimerManagerTests 4 | // 5 | // Created by JustkeepRunning on 01/05/2018. 6 | // Copyright (c) 2018 JustkeepRunning. All rights reserved. 7 | // 8 | 9 | @import XCTest; 10 | 11 | @interface Tests : XCTestCase 12 | 13 | @end 14 | 15 | @implementation Tests 16 | 17 | - (void)setUp 18 | { 19 | [super setUp]; 20 | // Put setup code here. This method is called before the invocation of each test method in the class. 21 | } 22 | 23 | - (void)tearDown 24 | { 25 | // Put teardown code here. This method is called after the invocation of each test method in the class. 26 | [super tearDown]; 27 | } 28 | 29 | - (void)testExample 30 | { 31 | XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__); 32 | } 33 | 34 | @end 35 | 36 | -------------------------------------------------------------------------------- /LXDTimerManager/Classes/structure/LXDBaseHashmap.mm: -------------------------------------------------------------------------------- 1 | // 2 | // LXDBaseHashmap.m 3 | // LXDTimerManager 4 | // 5 | // Created by didi on 2018/1/5. 6 | // Copyright © 2018年 didi. All rights reserved. 7 | // 8 | 9 | #import "LXDBaseHashmap.h" 10 | #include 11 | 12 | 13 | #define hash_bucket_count 7 14 | 15 | 16 | LXDBaseHashmap::LXDBaseHashmap() { 17 | entries_count = hash_bucket_count; 18 | size_t hash_size = hash_bucket_count * sizeof(hash_entry_t); 19 | hash_entries = (hash_entry_t *)malloc(hash_size); 20 | memset(hash_entries, 0, hash_size); 21 | } 22 | 23 | LXDBaseHashmap::~LXDBaseHashmap() { 24 | free(hash_entries); 25 | } 26 | 27 | unsigned int LXDBaseHashmap::obj_hash_code(void *obj) { 28 | uint64_t *val1 = (uint64_t *)obj; 29 | uint64_t *val2 = val1 + 1; 30 | return (unsigned int)(*val1 + *val2) % hash_bucket_count; 31 | } 32 | 33 | -------------------------------------------------------------------------------- /Example/LXDTimerManager/LXDViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // LXDViewController.m 3 | // LXDTimerManager 4 | // 5 | // Created by JustkeepRunning on 01/05/2018. 6 | // Copyright (c) 2018 JustkeepRunning. All rights reserved. 7 | // 8 | 9 | #import "LXDViewController.h" 10 | #import 11 | 12 | @interface LXDViewController () 13 | 14 | @end 15 | 16 | @implementation LXDViewController 17 | 18 | - (void)viewDidLoad 19 | { 20 | [super viewDidLoad]; 21 | } 22 | 23 | - (IBAction)clickedToCountDown: (UIButton *)sender { 24 | [sender beginCountDown: ^(id receiver, NSInteger leftTime, BOOL *isStop) { 25 | if (leftTime > 0) { 26 | [receiver setTitle: [NSString stringWithFormat: @"%lu s", leftTime] forState: UIControlStateNormal]; 27 | } else { 28 | [receiver setTitle: @"Button" forState: UIControlStateNormal]; 29 | } 30 | } forSeconds: 15]; 31 | } 32 | 33 | @end 34 | -------------------------------------------------------------------------------- /LXDTimerManager/Classes/structure/LXDReceiverHashmap.h: -------------------------------------------------------------------------------- 1 | // 2 | // LXDReceiverHashmap.hpp 3 | // LXDTimerManager 4 | // 5 | // Created by didi on 2018/1/5. 6 | // Copyright © 2018年 didi. All rights reserved. 7 | // 8 | 9 | #ifndef LXDReceiverHashmap_hpp 10 | #define LXDReceiverHashmap_hpp 11 | 12 | #include 13 | #include "LXDBaseHashmap.h" 14 | #include "LXDTimerStructure.h" 15 | 16 | 17 | class LXDReceiverHashmap: public LXDBaseHashmap { 18 | public: 19 | LXDReceiverHashmap(); 20 | ~LXDReceiverHashmap(); 21 | 22 | bool insertReceiver(void *obj, LXDReceiverCallback callback, unsigned long lefttime); 23 | bool compare(LXDReceiverNode *node, void *obj); 24 | LXDReceiverNode *lookupReceiver(void *obj); 25 | void destoryNode(LXDReceiverNode *node); 26 | 27 | private: 28 | LXDReceiver *create_receiver(void *obj, LXDReceiverCallback callback, long lefttime); 29 | }; 30 | 31 | 32 | #endif /* LXDReceiverHashmap_hpp */ 33 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/LXDTimerManager/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-LXDTimerManager_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-LXDTimerManager_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 | -------------------------------------------------------------------------------- /LXDTimerManager/Classes/object-c/NSObject+PerformTimer.m: -------------------------------------------------------------------------------- 1 | // 2 | // NSObject+PerformTimer.m 3 | // LXDTimerManager 4 | // 5 | // Created by didi on 2018/1/5. 6 | // Copyright © 2018年 didi. All rights reserved. 7 | // 8 | 9 | #import "NSObject+PerformTimer.h" 10 | #import "LXDTimerManager.h" 11 | 12 | 13 | @implementation NSObject (PerformTimer) 14 | 15 | 16 | - (void)beginCountDown: (LXDObjectCountDown)countDown forSeconds: (NSInteger)seconds { 17 | if (countDown == nil || seconds <= 0) { return; } 18 | 19 | __weak typeof(self) weakself = self; 20 | [[LXDTimerManager timerManager] registerCountDown: ^(long leftTime, bool *isStop) { 21 | if (weakself) { 22 | countDown(weakself, leftTime, (BOOL *)isStop); 23 | } else { 24 | *isStop = true; 25 | } 26 | } forSeconds: seconds withReceiver: self]; 27 | } 28 | 29 | - (void)stopCountDown { 30 | [[LXDTimerManager timerManager] unregisterCountDownTaskWithReceiver: self]; 31 | } 32 | 33 | 34 | @end 35 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LXDTimerManager_Tests/Pods-LXDTimerManager_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 | -------------------------------------------------------------------------------- /LXDTimerManager/Classes/object-c/NSObject+PerformTimer.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSObject+PerformTimer.h 3 | // LXDTimerManager 4 | // 5 | // Created by didi on 2018/1/5. 6 | // Copyright © 2018年 didi. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /*! 12 | * @block LXDObjectCountDown 13 | * 对象倒计时回调block 14 | * 15 | * @params receiver 注册回调的对象,引用安全处理 16 | * @params leftTime 倒计时剩余时间 17 | * @params isStop 等同于enum的作用,如果设置成YES,倒计时任务结束 18 | */ 19 | typedef void(^LXDObjectCountDown)(id receiver, NSInteger leftTime, BOOL *isStop); 20 | 21 | 22 | /*! 23 | * @category NSObject+PerformTimer 24 | * 对象倒计时扩展 25 | */ 26 | @interface NSObject (PerformTimer) 27 | 28 | /*! 29 | * @method beginCountDown:forSeconds: 30 | * 启动倒计时任务 31 | * 32 | * @params countDown 倒计时回调block 33 | * @params seconds 倒计时长 34 | */ 35 | - (void)beginCountDown: (LXDObjectCountDown)countDown forSeconds: (NSInteger)seconds; 36 | 37 | /*! 38 | * @method stopCountDown 39 | * 停止倒计时任务 40 | */ 41 | - (void)stopCountDown; 42 | 43 | @end 44 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # LXDTimerManager 2 | 3 | [![CI Status](http://img.shields.io/travis/JustkeepRunning/LXDTimerManager.svg?style=flat)](https://travis-ci.org/JustkeepRunning/LXDTimerManager) 4 | [![Version](https://img.shields.io/cocoapods/v/LXDTimerManager.svg?style=flat)](http://cocoapods.org/pods/LXDTimerManager) 5 | [![License](https://img.shields.io/cocoapods/l/LXDTimerManager.svg?style=flat)](http://cocoapods.org/pods/LXDTimerManager) 6 | [![Platform](https://img.shields.io/cocoapods/p/LXDTimerManager.svg?style=flat)](http://cocoapods.org/pods/LXDTimerManager) 7 | 8 | ## Example 9 | 10 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 11 | 12 | ## Requirements 13 | 14 | ## Installation 15 | 16 | LXDTimerManager is available through [CocoaPods](http://cocoapods.org). To install 17 | it, simply add the following line to your Podfile: 18 | 19 | ```ruby 20 | pod 'LXDTimerManager' 21 | ``` 22 | 23 | ## Author 24 | 25 | JustkeepRunning, 634893985@qq.com 26 | 27 | ## License 28 | 29 | LXDTimerManager is available under the MIT license. See the LICENSE file for more info. 30 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2018 JustkeepRunning <634893985@qq.com> 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 | -------------------------------------------------------------------------------- /LXDTimerManager/Classes/object-c/LXDTimerManager.h: -------------------------------------------------------------------------------- 1 | // 2 | // LXDTimerManager.h 3 | // LXDTimerManager 4 | // 5 | // Created by didi on 2018/1/5. 6 | // Copyright © 2018年 didi. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | /*! 12 | * @block LXDTimerCallback 13 | * 回调block 14 | * 15 | * @params leftTime 倒计时剩余秒数 16 | * @params isStop 等同于enum的isStop,修改为YES后定时任务结束 17 | */ 18 | typedef void(^LXDTimerCallback)(long leftTime, bool *isStop); 19 | 20 | /*! 21 | * @class LXDTimerManager 22 | * 定时器管理 23 | */ 24 | @interface LXDTimerManager : NSObject 25 | 26 | /*! 27 | * @method timerManager 28 | * 获取定时器管理对象 29 | */ 30 | + (instancetype)timerManager; 31 | 32 | /*! 33 | * @method registerCountDown:forSeconds:withReceiver: 34 | * 注册倒计时回调 35 | * 36 | * @params countDown 回调block 37 | * @params seconds 倒计时长 38 | * @params receiver 注册的对象 39 | */ 40 | - (void)registerCountDown: (LXDTimerCallback)countDown 41 | forSeconds: (NSUInteger)seconds 42 | withReceiver: (id)receiver; 43 | 44 | /*! 45 | * @method unregisterCountDownTaskWithReceiver: 46 | * 取消倒计时任务注册 47 | * 48 | * @param receiver 注册任务的对象 49 | */ 50 | - (void)unregisterCountDownTaskWithReceiver: (id)receiver; 51 | 52 | @end 53 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LXDTimerManager_Example/Pods-LXDTimerManager_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## LXDTimerManager 5 | 6 | Copyright (c) 2018 JustkeepRunning <634893985@qq.com> 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 | -------------------------------------------------------------------------------- /LXDTimerManager.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint LXDTimerManager.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 = 'LXDTimerManager' 11 | s.version = '1.1.0' 12 | s.summary = 'A lib to manage count down timer.' 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/sindrilin/LXDTimerManager.git' 25 | s.license = { :type => 'MIT', :file => 'LICENSE' } 26 | s.author = { 'sindrilin' => 'codersindri@gmail.com' } 27 | s.source = { :git => 'https://github.com/sindrilin/LXDTimerManager.git', :tag => s.version.to_s } 28 | 29 | s.ios.deployment_target = '8.0' 30 | 31 | s.source_files = 'LXDTimerManager/Classes/**/*' 32 | s.public_header_files = 'LXDTimerManager/Classes/object-c/*.h' 33 | end 34 | 35 | 36 | -------------------------------------------------------------------------------- /LXDTimerManager/Classes/structure/LXDTimerStructure.h: -------------------------------------------------------------------------------- 1 | // 2 | // LXDReceiverNode.h 3 | // LXDTimerManager 4 | // 5 | // Created by didi on 2018/1/5. 6 | // Copyright © 2018年 didi. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | /*! 13 | * @block LXDReceiverCallback 14 | * 回调block 15 | * 16 | * @params leftTime 倒计时剩余秒数 17 | * @params isStop 等同于enum的isStop,修改为YES后定时任务结束 18 | */ 19 | typedef void(^LXDReceiverCallback)(long leftTime, bool *isStop); 20 | 21 | 22 | /*! 23 | * @structure LXDReceiver 24 | * 存储回调结构体 25 | * 26 | * @var lefttime 倒计时时长 27 | * @var callback 回调block 28 | */ 29 | typedef struct LXDReceiver { 30 | long lefttime; 31 | uintptr_t objaddr; 32 | LXDReceiverCallback callback; 33 | } LXDReceiver; 34 | 35 | 36 | /*! 37 | * @structure LXDReceiverNode 38 | * 存储结构双向链表节点 39 | * 40 | * @var count 链表有效长度 41 | * @var receiver 回调结构 42 | * @var next 下个节点 43 | * @var previous 上个节点 44 | */ 45 | typedef struct LXDReceiverNode { 46 | unsigned int count; 47 | LXDReceiver *receiver; 48 | LXDReceiverNode *next; 49 | LXDReceiverNode *previous; 50 | 51 | LXDReceiverNode(LXDReceiver *receiver = NULL, LXDReceiverNode *previous = NULL) { 52 | this->count = 0; 53 | this->next = NULL; 54 | this->previous = previous; 55 | this->receiver = receiver; 56 | } 57 | } LXDReceiverNode; 58 | 59 | 60 | -------------------------------------------------------------------------------- /Example/LXDTimerManager/LXDTimerManager-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | ${PRODUCT_NAME} 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSignature 22 | ???? 23 | CFBundleVersion 24 | 1.0 25 | LSRequiresIPhoneOS 26 | 27 | UILaunchStoryboardName 28 | LaunchScreen 29 | UIMainStoryboardFile 30 | Main 31 | UIRequiredDeviceCapabilities 32 | 33 | armv7 34 | 35 | UISupportedInterfaceOrientations 36 | 37 | UIInterfaceOrientationPortrait 38 | UIInterfaceOrientationLandscapeLeft 39 | UIInterfaceOrientationLandscapeRight 40 | 41 | UISupportedInterfaceOrientations~ipad 42 | 43 | UIInterfaceOrientationPortrait 44 | UIInterfaceOrientationPortraitUpsideDown 45 | UIInterfaceOrientationLandscapeLeft 46 | UIInterfaceOrientationLandscapeRight 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /Example/LXDTimerManager/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /Example/LXDTimerManager/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "20x20", 46 | "scale" : "1x" 47 | }, 48 | { 49 | "idiom" : "ipad", 50 | "size" : "20x20", 51 | "scale" : "2x" 52 | }, 53 | { 54 | "idiom" : "ipad", 55 | "size" : "29x29", 56 | "scale" : "1x" 57 | }, 58 | { 59 | "idiom" : "ipad", 60 | "size" : "29x29", 61 | "scale" : "2x" 62 | }, 63 | { 64 | "idiom" : "ipad", 65 | "size" : "40x40", 66 | "scale" : "1x" 67 | }, 68 | { 69 | "idiom" : "ipad", 70 | "size" : "40x40", 71 | "scale" : "2x" 72 | }, 73 | { 74 | "idiom" : "ipad", 75 | "size" : "76x76", 76 | "scale" : "1x" 77 | }, 78 | { 79 | "idiom" : "ipad", 80 | "size" : "76x76", 81 | "scale" : "2x" 82 | }, 83 | { 84 | "idiom" : "ipad", 85 | "size" : "83.5x83.5", 86 | "scale" : "2x" 87 | }, 88 | { 89 | "idiom" : "ios-marketing", 90 | "size" : "1024x1024", 91 | "scale" : "1x" 92 | } 93 | ], 94 | "info" : { 95 | "version" : 1, 96 | "author" : "xcode" 97 | } 98 | } 99 | -------------------------------------------------------------------------------- /Example/LXDTimerManager/LXDAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // LXDAppDelegate.m 3 | // LXDTimerManager 4 | // 5 | // Created by JustkeepRunning on 01/05/2018. 6 | // Copyright (c) 2018 JustkeepRunning. All rights reserved. 7 | // 8 | 9 | #import "LXDAppDelegate.h" 10 | 11 | @implementation LXDAppDelegate 12 | 13 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions 14 | { 15 | // Override point for customization after application launch. 16 | return YES; 17 | } 18 | 19 | - (void)applicationWillResignActive:(UIApplication *)application 20 | { 21 | // 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. 22 | // 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. 23 | } 24 | 25 | - (void)applicationDidEnterBackground:(UIApplication *)application 26 | { 27 | // 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. 28 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 29 | } 30 | 31 | - (void)applicationWillEnterForeground:(UIApplication *)application 32 | { 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 | - (void)applicationDidBecomeActive:(UIApplication *)application 37 | { 38 | // 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. 39 | } 40 | 41 | - (void)applicationWillTerminate:(UIApplication *)application 42 | { 43 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 44 | } 45 | 46 | @end 47 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LXDTimerManager_Example/Pods-LXDTimerManager_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) 2018 JustkeepRunning <634893985@qq.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 | LXDTimerManager 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 | -------------------------------------------------------------------------------- /LXDTimerManager/Classes/structure/LXDReceiverHashmap.mm: -------------------------------------------------------------------------------- 1 | // 2 | // LXDReceiverHashmap.cpp 3 | // LXDTimerManager 4 | // 5 | // Created by didi on 2018/1/5. 6 | // Copyright © 2018年 didi. All rights reserved. 7 | // 8 | 9 | #include "LXDReceiverHashmap.h" 10 | 11 | 12 | #pragma mark - Public 13 | LXDReceiverHashmap::LXDReceiverHashmap(): LXDBaseHashmap() { 14 | for (int offset = 0; offset < entries_count; offset++) { 15 | hash_entry_t *entry = hash_entries + offset; 16 | LXDReceiverNode *header = new LXDReceiverNode(); 17 | entry->entry = (void *)header; 18 | } 19 | } 20 | 21 | LXDReceiverHashmap::~LXDReceiverHashmap() { 22 | for (int offset = 0; offset < entries_count; offset++) { 23 | hash_entry_t *entry = hash_entries + offset; 24 | LXDReceiverNode *node = (LXDReceiverNode *)entry->entry; 25 | 26 | while (node != NULL) { 27 | LXDReceiverNode *next = node->next; 28 | destoryNode(node); 29 | node = next; 30 | } 31 | } 32 | } 33 | 34 | bool LXDReceiverHashmap::insertReceiver(void *obj, LXDReceiverCallback callback, unsigned long lefttime) { 35 | unsigned int offset = obj_hash_code(obj); 36 | hash_entry_t *entry = hash_entries + offset; 37 | LXDReceiverNode *header = (LXDReceiverNode *)entry->entry; 38 | LXDReceiverNode *node = header->next; 39 | 40 | if (node == NULL) { 41 | LXDReceiver *receiver = create_receiver(obj, callback, lefttime); 42 | node = new LXDReceiverNode(receiver, header); 43 | header->next = node; 44 | header->count++; 45 | return true; 46 | } 47 | 48 | do { 49 | if (compare(node, obj) == true) { 50 | node->receiver->callback = callback; 51 | node->receiver->lefttime = lefttime; 52 | return false; 53 | } 54 | } while (node->next != NULL && (node = node->next)); 55 | 56 | if (compare(node, obj) == true) { 57 | node->receiver->callback = callback; 58 | node->receiver->lefttime = lefttime; 59 | return false; 60 | } 61 | 62 | LXDReceiver *receiver = create_receiver(obj, callback, lefttime); 63 | node->next = new LXDReceiverNode(receiver, node); 64 | header->count++; 65 | return true; 66 | } 67 | 68 | LXDReceiverNode *LXDReceiverHashmap::lookupReceiver(void *obj) { 69 | unsigned int offset = obj_hash_code(obj); 70 | hash_entry_t *entry = hash_entries + offset; 71 | LXDReceiverNode *node = (LXDReceiverNode *)entry->entry; 72 | node = node->next; 73 | 74 | while (node != NULL) { 75 | if (compare(node, obj) == true) { 76 | return node; 77 | } 78 | node = node->next; 79 | } 80 | return NULL; 81 | } 82 | 83 | void LXDReceiverHashmap::destoryNode(LXDReceiverNode *node) { 84 | if (node->next != NULL) { 85 | node->next->previous = node->previous; 86 | node->previous->next = node->next; 87 | } else { 88 | node->previous->next = NULL; 89 | } 90 | delete node->receiver; 91 | delete node; 92 | } 93 | 94 | 95 | #pragma mark - Private 96 | bool LXDReceiverHashmap::compare(LXDReceiverNode *node, void *obj) { 97 | return (node->receiver->objaddr == (uintptr_t)obj); 98 | } 99 | 100 | LXDReceiver *LXDReceiverHashmap::create_receiver(void *obj, LXDReceiverCallback callback, long lefttime) { 101 | LXDReceiver *receiver = new LXDReceiver(); 102 | receiver->callback = [callback copy]; 103 | receiver->objaddr = (uintptr_t)obj; 104 | receiver->lefttime = lefttime; 105 | return receiver; 106 | } 107 | -------------------------------------------------------------------------------- /Example/LXDTimerManager.xcodeproj/xcshareddata/xcschemes/LXDTimerManager-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 42 | 43 | 49 | 50 | 51 | 52 | 53 | 54 | 64 | 66 | 72 | 73 | 74 | 75 | 76 | 77 | 83 | 85 | 91 | 92 | 93 | 94 | 96 | 97 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LXDTimerManager_Tests/Pods-LXDTimerManager_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 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 10 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 11 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 12 | 13 | install_framework() 14 | { 15 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 16 | local source="${BUILT_PRODUCTS_DIR}/$1" 17 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 18 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 19 | elif [ -r "$1" ]; then 20 | local source="$1" 21 | fi 22 | 23 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 24 | 25 | if [ -L "${source}" ]; then 26 | echo "Symlinked..." 27 | source="$(readlink "${source}")" 28 | fi 29 | 30 | # Use filter instead of exclude so missing patterns don't throw errors. 31 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 32 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 33 | 34 | local basename 35 | basename="$(basename -s .framework "$1")" 36 | binary="${destination}/${basename}.framework/${basename}" 37 | if ! [ -r "$binary" ]; then 38 | binary="${destination}/${basename}" 39 | fi 40 | 41 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 42 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 43 | strip_invalid_archs "$binary" 44 | fi 45 | 46 | # Resign the code if required by the build settings to avoid unstable apps 47 | code_sign_if_enabled "${destination}/$(basename "$1")" 48 | 49 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 50 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 51 | local swift_runtime_libs 52 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 53 | for lib in $swift_runtime_libs; do 54 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 55 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 56 | code_sign_if_enabled "${destination}/${lib}" 57 | done 58 | fi 59 | } 60 | 61 | # Copies the dSYM of a vendored framework 62 | install_dsym() { 63 | local source="$1" 64 | if [ -r "$source" ]; then 65 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DWARF_DSYM_FOLDER_PATH}\"" 66 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DWARF_DSYM_FOLDER_PATH}" 67 | fi 68 | } 69 | 70 | # Signs a framework with the provided identity 71 | code_sign_if_enabled() { 72 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 73 | # Use the current code_sign_identitiy 74 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 75 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" 76 | 77 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 78 | code_sign_cmd="$code_sign_cmd &" 79 | fi 80 | echo "$code_sign_cmd" 81 | eval "$code_sign_cmd" 82 | fi 83 | } 84 | 85 | # Strip invalid architectures 86 | strip_invalid_archs() { 87 | binary="$1" 88 | # Get architectures for current file 89 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 90 | stripped="" 91 | for arch in $archs; do 92 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 93 | # Strip non-valid architectures in-place 94 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 95 | stripped="$stripped $arch" 96 | fi 97 | done 98 | if [[ "$stripped" ]]; then 99 | echo "Stripped $binary of architectures:$stripped" 100 | fi 101 | } 102 | 103 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 104 | wait 105 | fi 106 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LXDTimerManager_Example/Pods-LXDTimerManager_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 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 10 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 11 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 12 | 13 | install_framework() 14 | { 15 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 16 | local source="${BUILT_PRODUCTS_DIR}/$1" 17 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 18 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 19 | elif [ -r "$1" ]; then 20 | local source="$1" 21 | fi 22 | 23 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 24 | 25 | if [ -L "${source}" ]; then 26 | echo "Symlinked..." 27 | source="$(readlink "${source}")" 28 | fi 29 | 30 | # Use filter instead of exclude so missing patterns don't throw errors. 31 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 32 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 33 | 34 | local basename 35 | basename="$(basename -s .framework "$1")" 36 | binary="${destination}/${basename}.framework/${basename}" 37 | if ! [ -r "$binary" ]; then 38 | binary="${destination}/${basename}" 39 | fi 40 | 41 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 42 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 43 | strip_invalid_archs "$binary" 44 | fi 45 | 46 | # Resign the code if required by the build settings to avoid unstable apps 47 | code_sign_if_enabled "${destination}/$(basename "$1")" 48 | 49 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 50 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 51 | local swift_runtime_libs 52 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 53 | for lib in $swift_runtime_libs; do 54 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 55 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 56 | code_sign_if_enabled "${destination}/${lib}" 57 | done 58 | fi 59 | } 60 | 61 | # Copies the dSYM of a vendored framework 62 | install_dsym() { 63 | local source="$1" 64 | if [ -r "$source" ]; then 65 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DWARF_DSYM_FOLDER_PATH}\"" 66 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DWARF_DSYM_FOLDER_PATH}" 67 | fi 68 | } 69 | 70 | # Signs a framework with the provided identity 71 | code_sign_if_enabled() { 72 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 73 | # Use the current code_sign_identitiy 74 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 75 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" 76 | 77 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 78 | code_sign_cmd="$code_sign_cmd &" 79 | fi 80 | echo "$code_sign_cmd" 81 | eval "$code_sign_cmd" 82 | fi 83 | } 84 | 85 | # Strip invalid architectures 86 | strip_invalid_archs() { 87 | binary="$1" 88 | # Get architectures for current file 89 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 90 | stripped="" 91 | for arch in $archs; do 92 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 93 | # Strip non-valid architectures in-place 94 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 95 | stripped="$stripped $arch" 96 | fi 97 | done 98 | if [[ "$stripped" ]]; then 99 | echo "Stripped $binary of architectures:$stripped" 100 | fi 101 | } 102 | 103 | 104 | if [[ "$CONFIGURATION" == "Debug" ]]; then 105 | install_framework "${BUILT_PRODUCTS_DIR}/LXDTimerManager/LXDTimerManager.framework" 106 | fi 107 | if [[ "$CONFIGURATION" == "Release" ]]; then 108 | install_framework "${BUILT_PRODUCTS_DIR}/LXDTimerManager/LXDTimerManager.framework" 109 | fi 110 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 111 | wait 112 | fi 113 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LXDTimerManager_Tests/Pods-LXDTimerManager_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 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 12 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 13 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 14 | 15 | case "${TARGETED_DEVICE_FAMILY}" in 16 | 1,2) 17 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 18 | ;; 19 | 1) 20 | TARGET_DEVICE_ARGS="--target-device iphone" 21 | ;; 22 | 2) 23 | TARGET_DEVICE_ARGS="--target-device ipad" 24 | ;; 25 | 3) 26 | TARGET_DEVICE_ARGS="--target-device tv" 27 | ;; 28 | 4) 29 | TARGET_DEVICE_ARGS="--target-device watch" 30 | ;; 31 | *) 32 | TARGET_DEVICE_ARGS="--target-device mac" 33 | ;; 34 | esac 35 | 36 | install_resource() 37 | { 38 | if [[ "$1" = /* ]] ; then 39 | RESOURCE_PATH="$1" 40 | else 41 | RESOURCE_PATH="${PODS_ROOT}/$1" 42 | fi 43 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 44 | cat << EOM 45 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 46 | EOM 47 | exit 1 48 | fi 49 | case $RESOURCE_PATH in 50 | *.storyboard) 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\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true 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\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 53 | ;; 54 | *.xib) 55 | 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}" || true 56 | 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} 57 | ;; 58 | *.framework) 59 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 60 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 61 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 62 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 63 | ;; 64 | *.xcdatamodel) 65 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true 66 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 67 | ;; 68 | *.xcdatamodeld) 69 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true 70 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 71 | ;; 72 | *.xcmappingmodel) 73 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true 74 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 75 | ;; 76 | *.xcassets) 77 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 78 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 79 | ;; 80 | *) 81 | echo "$RESOURCE_PATH" || true 82 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 83 | ;; 84 | esac 85 | } 86 | 87 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 88 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 89 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 90 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 91 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 92 | fi 93 | rm -f "$RESOURCES_TO_COPY" 94 | 95 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 96 | then 97 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 98 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 99 | while read line; do 100 | if [[ $line != "${PODS_ROOT}*" ]]; then 101 | XCASSET_FILES+=("$line") 102 | fi 103 | done <<<"$OTHER_XCASSETS" 104 | 105 | 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}" 106 | fi 107 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-LXDTimerManager_Example/Pods-LXDTimerManager_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 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 12 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 13 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 14 | 15 | case "${TARGETED_DEVICE_FAMILY}" in 16 | 1,2) 17 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 18 | ;; 19 | 1) 20 | TARGET_DEVICE_ARGS="--target-device iphone" 21 | ;; 22 | 2) 23 | TARGET_DEVICE_ARGS="--target-device ipad" 24 | ;; 25 | 3) 26 | TARGET_DEVICE_ARGS="--target-device tv" 27 | ;; 28 | 4) 29 | TARGET_DEVICE_ARGS="--target-device watch" 30 | ;; 31 | *) 32 | TARGET_DEVICE_ARGS="--target-device mac" 33 | ;; 34 | esac 35 | 36 | install_resource() 37 | { 38 | if [[ "$1" = /* ]] ; then 39 | RESOURCE_PATH="$1" 40 | else 41 | RESOURCE_PATH="${PODS_ROOT}/$1" 42 | fi 43 | if [[ ! -e "$RESOURCE_PATH" ]] ; then 44 | cat << EOM 45 | error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. 46 | EOM 47 | exit 1 48 | fi 49 | case $RESOURCE_PATH in 50 | *.storyboard) 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\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true 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\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} 53 | ;; 54 | *.xib) 55 | 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}" || true 56 | 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} 57 | ;; 58 | *.framework) 59 | echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 60 | mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 61 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true 62 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 63 | ;; 64 | *.xcdatamodel) 65 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true 66 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" 67 | ;; 68 | *.xcdatamodeld) 69 | echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true 70 | xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" 71 | ;; 72 | *.xcmappingmodel) 73 | echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true 74 | xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" 75 | ;; 76 | *.xcassets) 77 | ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" 78 | XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") 79 | ;; 80 | *) 81 | echo "$RESOURCE_PATH" || true 82 | echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" 83 | ;; 84 | esac 85 | } 86 | 87 | mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 88 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 89 | if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then 90 | mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 91 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 92 | fi 93 | rm -f "$RESOURCES_TO_COPY" 94 | 95 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] 96 | then 97 | # Find all other xcassets (this unfortunately includes those of path pods and other targets). 98 | OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) 99 | while read line; do 100 | if [[ $line != "${PODS_ROOT}*" ]]; then 101 | XCASSET_FILES+=("$line") 102 | fi 103 | done <<<"$OTHER_XCASSETS" 104 | 105 | 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}" 106 | fi 107 | -------------------------------------------------------------------------------- /LXDTimerManager/Classes/object-c/LXDTimerManager.mm: -------------------------------------------------------------------------------- 1 | // 2 | // LXDTimerManager.m 3 | // LXDTimerManager 4 | // 5 | // Created by didi on 2018/1/5. 6 | // Copyright © 2018年 didi. All rights reserved. 7 | // 8 | 9 | #import "LXDTimerManager.h" 10 | #import "LXDReceiverHashmap.h" 11 | #import 12 | 13 | using namespace std; 14 | 15 | #ifndef lxd_unusally 16 | #define lxd_unusally(exp) ((typeof(exp))__builtin_expect((long)(exp), 0l)) 17 | #endif 18 | 19 | #define lxd_signal(sema) dispatch_semaphore_signal(sema); 20 | #define lxd_wait(sema) dispatch_semaphore_wait(sema, DISPATCH_TIME_FOREVER); 21 | 22 | 23 | @interface LXDTimerManager () 24 | 25 | @property (nonatomic, strong) dispatch_source_t timer; 26 | @property (nonatomic, strong) dispatch_semaphore_t lock; 27 | @property (nonatomic, strong) dispatch_queue_t timerQueue; 28 | @property (nonatomic, strong) NSDate *enterBackgroundTime; 29 | 30 | @property (nonatomic, assign) LXDReceiverHashmap *receives; 31 | 32 | @end 33 | 34 | 35 | @implementation LXDTimerManager 36 | 37 | 38 | #pragma mark - Life 39 | - (instancetype)init { 40 | if (self = [super init]) { 41 | self.receives = new LXDReceiverHashmap(); 42 | self.lock = dispatch_semaphore_create(1); 43 | self.timerQueue = dispatch_queue_create("com.sindrilin.timer.queue", DISPATCH_QUEUE_SERIAL); 44 | [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(applicationDidBecameActive:) name: UIApplicationDidBecomeActiveNotification object: nil]; 45 | [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(applicationDidEnterBackground:) name: UIApplicationDidEnterBackgroundNotification object: nil]; 46 | } 47 | return self; 48 | } 49 | 50 | - (void)dealloc { 51 | delete self.receives; 52 | [[NSNotificationCenter defaultCenter] removeObserver: self]; 53 | } 54 | 55 | 56 | #pragma mark - Public 57 | + (instancetype)timerManager { 58 | static LXDTimerManager *timerManager = nil; 59 | static dispatch_once_t onceToken; 60 | dispatch_once(&onceToken, ^{ 61 | timerManager = [LXDTimerManager new]; 62 | }); 63 | return timerManager; 64 | } 65 | 66 | - (void)registerCountDown: (LXDTimerCallback)countDown 67 | forSeconds: (NSUInteger)seconds 68 | withReceiver: (id)receiver { 69 | if (countDown == nil || seconds <= 0 || receiver == nil) { return; } 70 | 71 | lxd_wait(self.lock); 72 | self.receives->insertReceiver((__bridge void *)receiver, countDown, seconds); 73 | [self _startupTimer]; 74 | lxd_signal(self.lock); 75 | } 76 | 77 | - (void)unregisterCountDownTaskWithReceiver: (id)receiver { 78 | void *obj = (__bridge void *)receiver; 79 | if (obj == NULL) { 80 | return; 81 | } 82 | lxd_wait(self.lock); 83 | __weak typeof(self) weakself = self; 84 | [self _foreachNodeWithHandle: ^(LXDReceiverNode *node) { 85 | if (weakself.receives->compare(node, obj) == true) { 86 | weakself.receives->destoryNode(node); 87 | } 88 | }]; 89 | lxd_signal(self.lock); 90 | } 91 | 92 | 93 | #pragma mark - Notification 94 | - (void)applicationDidBecameActive: (NSNotification *)notif { 95 | if (self.enterBackgroundTime && self.timer) { 96 | long delay = [[NSDate date] timeIntervalSinceDate: self.enterBackgroundTime]; 97 | 98 | dispatch_suspend(self.timer); 99 | [self _countDownWithInterval: delay]; 100 | dispatch_resume(self.timer); 101 | } 102 | } 103 | 104 | - (void)applicationDidEnterBackground: (NSNotification *)notif { 105 | self.enterBackgroundTime = [NSDate date]; 106 | } 107 | 108 | 109 | #pragma mark - Private 110 | - (void)_startupTimer { 111 | if (self.timer != nil) { return; } 112 | self.timer = dispatch_source_create(DISPATCH_SOURCE_TYPE_TIMER, 0, 0, self.timerQueue); 113 | dispatch_source_set_timer(self.timer, DISPATCH_TIME_NOW + 1.0 * NSEC_PER_SEC, 1.0 * NSEC_PER_SEC, 0); 114 | dispatch_source_set_event_handler(self.timer, ^{ 115 | [[LXDTimerManager timerManager] _countDownWithInterval: 1]; 116 | }); 117 | dispatch_resume(self.timer); 118 | } 119 | 120 | - (void)_countDownWithInterval: (unsigned long)interval { 121 | __block unsigned long count = 0; 122 | lxd_wait(self.lock); 123 | [self _foreachNodeWithHandle: ^(LXDReceiverNode *node) { 124 | if (node->receiver->lefttime < interval) { 125 | node->receiver->lefttime = 0; 126 | } else { 127 | node->receiver->lefttime -= interval; 128 | } 129 | count++; 130 | }]; 131 | lxd_signal(self.lock); 132 | 133 | if (count == 0) { 134 | return; 135 | } 136 | 137 | dispatch_async(dispatch_get_main_queue(), ^{ 138 | __weak typeof(self) weakself = self; 139 | [self _foreachNodeWithHandle: ^(LXDReceiverNode *node) { 140 | bool isStop = false; 141 | node->receiver->callback(node->receiver->lefttime, &isStop); 142 | 143 | if (lxd_unusally((isStop == true))) { 144 | lxd_wait(weakself.lock); 145 | node->receiver->lefttime = 0; 146 | lxd_signal(weakself.lock); 147 | } 148 | }]; 149 | 150 | dispatch_async(_timerQueue, ^{ 151 | lxd_wait(self.lock); 152 | [self _foreachNodeWithHandle: ^(LXDReceiverNode *node) { 153 | if (node->receiver->lefttime == 0) { 154 | weakself.receives->destoryNode(node); 155 | } 156 | }]; 157 | lxd_signal(self.lock); 158 | }); 159 | }); 160 | } 161 | 162 | - (void)_foreachNodeWithHandle: (void(^)(LXDReceiverNode *node))handle { 163 | if (handle == nil) { return; } 164 | for (unsigned int offset = 0; offset < _receives->entries_count; offset++) { 165 | hash_entry_t *entry = _receives->hash_entries + offset; 166 | LXDReceiverNode *header = (LXDReceiverNode *)entry->entry; 167 | LXDReceiverNode *node = header->next; 168 | 169 | while (node != NULL) { 170 | handle(node); 171 | node = node->next; 172 | } 173 | } 174 | } 175 | 176 | 177 | @end 178 | 179 | -------------------------------------------------------------------------------- /Example/LXDTimerManager/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 | 33 | 42 | 51 | 60 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | -------------------------------------------------------------------------------- /Example/LXDTimerManager.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 11 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; }; 12 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 13 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F596195388D20070C39A /* InfoPlist.strings */; }; 14 | 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; }; 15 | 6003F59E195388D20070C39A /* LXDAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F59D195388D20070C39A /* LXDAppDelegate.m */; }; 16 | 6003F5A7195388D20070C39A /* LXDViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5A6195388D20070C39A /* LXDViewController.m */; }; 17 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; }; 18 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F5AF195388D20070C39A /* XCTest.framework */; }; 19 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 20 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 21 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5B8195388D20070C39A /* InfoPlist.strings */; }; 22 | 6003F5BC195388D20070C39A /* Tests.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F5BB195388D20070C39A /* Tests.m */; }; 23 | 71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */; }; 24 | 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */; }; 25 | 90AF3D3CE2CC87CBF3BEBCFB /* Pods_LXDTimerManager_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 752DB0F7F77FBF274E48F13B /* Pods_LXDTimerManager_Example.framework */; }; 26 | B48E8E552132D91DA327EEC0 /* Pods_LXDTimerManager_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7A4354728909EBCC478440C0 /* Pods_LXDTimerManager_Tests.framework */; }; 27 | /* End PBXBuildFile section */ 28 | 29 | /* Begin PBXContainerItemProxy section */ 30 | 6003F5B3195388D20070C39A /* PBXContainerItemProxy */ = { 31 | isa = PBXContainerItemProxy; 32 | containerPortal = 6003F582195388D10070C39A /* Project object */; 33 | proxyType = 1; 34 | remoteGlobalIDString = 6003F589195388D20070C39A; 35 | remoteInfo = LXDTimerManager; 36 | }; 37 | /* End PBXContainerItemProxy section */ 38 | 39 | /* Begin PBXFileReference section */ 40 | 1CEFC6CC30507ECD8B82A79F /* LXDTimerManager.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LXDTimerManager.podspec; path = ../LXDTimerManager.podspec; sourceTree = ""; }; 41 | 1E2AFD5DBD307BAE91CCA6C4 /* Pods-LXDTimerManager_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LXDTimerManager_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-LXDTimerManager_Tests/Pods-LXDTimerManager_Tests.debug.xcconfig"; sourceTree = ""; }; 42 | 6003F58A195388D20070C39A /* LXDTimerManager_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = LXDTimerManager_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 43 | 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; 44 | 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; 45 | 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; 46 | 6003F595195388D20070C39A /* LXDTimerManager-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "LXDTimerManager-Info.plist"; sourceTree = ""; }; 47 | 6003F597195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 48 | 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; 49 | 6003F59B195388D20070C39A /* LXDTimerManager-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "LXDTimerManager-Prefix.pch"; sourceTree = ""; }; 50 | 6003F59C195388D20070C39A /* LXDAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LXDAppDelegate.h; sourceTree = ""; }; 51 | 6003F59D195388D20070C39A /* LXDAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LXDAppDelegate.m; sourceTree = ""; }; 52 | 6003F5A5195388D20070C39A /* LXDViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LXDViewController.h; sourceTree = ""; }; 53 | 6003F5A6195388D20070C39A /* LXDViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LXDViewController.m; sourceTree = ""; }; 54 | 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 55 | 6003F5AE195388D20070C39A /* LXDTimerManager_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LXDTimerManager_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 56 | 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 57 | 6003F5B7195388D20070C39A /* Tests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; sourceTree = ""; }; 58 | 6003F5B9195388D20070C39A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 59 | 6003F5BB195388D20070C39A /* Tests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = Tests.m; sourceTree = ""; }; 60 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Tests-Prefix.pch"; sourceTree = ""; }; 61 | 71719F9E1E33DC2100824A3D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 62 | 72FE988EDD320430BAD363F7 /* Pods-LXDTimerManager_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LXDTimerManager_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-LXDTimerManager_Example/Pods-LXDTimerManager_Example.release.xcconfig"; sourceTree = ""; }; 63 | 752DB0F7F77FBF274E48F13B /* Pods_LXDTimerManager_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_LXDTimerManager_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 64 | 7A4354728909EBCC478440C0 /* Pods_LXDTimerManager_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_LXDTimerManager_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 65 | 7EA67C48C3BE811D9CE5A92C /* Pods-LXDTimerManager_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LXDTimerManager_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-LXDTimerManager_Tests/Pods-LXDTimerManager_Tests.release.xcconfig"; sourceTree = ""; }; 66 | 8625F3ACD41B494F4A8A97F3 /* Pods-LXDTimerManager_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-LXDTimerManager_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-LXDTimerManager_Example/Pods-LXDTimerManager_Example.debug.xcconfig"; sourceTree = ""; }; 67 | 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = Main.storyboard; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 68 | 9574CD530B87BD1A8FA3B872 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 69 | BA2060442D6B3BF54C2B6D18 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 70 | /* End PBXFileReference section */ 71 | 72 | /* Begin PBXFrameworksBuildPhase section */ 73 | 6003F587195388D20070C39A /* Frameworks */ = { 74 | isa = PBXFrameworksBuildPhase; 75 | buildActionMask = 2147483647; 76 | files = ( 77 | 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */, 78 | 6003F592195388D20070C39A /* UIKit.framework in Frameworks */, 79 | 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */, 80 | 90AF3D3CE2CC87CBF3BEBCFB /* Pods_LXDTimerManager_Example.framework in Frameworks */, 81 | ); 82 | runOnlyForDeploymentPostprocessing = 0; 83 | }; 84 | 6003F5AB195388D20070C39A /* Frameworks */ = { 85 | isa = PBXFrameworksBuildPhase; 86 | buildActionMask = 2147483647; 87 | files = ( 88 | 6003F5B0195388D20070C39A /* XCTest.framework in Frameworks */, 89 | 6003F5B2195388D20070C39A /* UIKit.framework in Frameworks */, 90 | 6003F5B1195388D20070C39A /* Foundation.framework in Frameworks */, 91 | B48E8E552132D91DA327EEC0 /* Pods_LXDTimerManager_Tests.framework in Frameworks */, 92 | ); 93 | runOnlyForDeploymentPostprocessing = 0; 94 | }; 95 | /* End PBXFrameworksBuildPhase section */ 96 | 97 | /* Begin PBXGroup section */ 98 | 6003F581195388D10070C39A = { 99 | isa = PBXGroup; 100 | children = ( 101 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */, 102 | 6003F593195388D20070C39A /* Example for LXDTimerManager */, 103 | 6003F5B5195388D20070C39A /* Tests */, 104 | 6003F58C195388D20070C39A /* Frameworks */, 105 | 6003F58B195388D20070C39A /* Products */, 106 | FEB33B7DF534ED0026CECE94 /* Pods */, 107 | ); 108 | sourceTree = ""; 109 | }; 110 | 6003F58B195388D20070C39A /* Products */ = { 111 | isa = PBXGroup; 112 | children = ( 113 | 6003F58A195388D20070C39A /* LXDTimerManager_Example.app */, 114 | 6003F5AE195388D20070C39A /* LXDTimerManager_Tests.xctest */, 115 | ); 116 | name = Products; 117 | sourceTree = ""; 118 | }; 119 | 6003F58C195388D20070C39A /* Frameworks */ = { 120 | isa = PBXGroup; 121 | children = ( 122 | 6003F58D195388D20070C39A /* Foundation.framework */, 123 | 6003F58F195388D20070C39A /* CoreGraphics.framework */, 124 | 6003F591195388D20070C39A /* UIKit.framework */, 125 | 6003F5AF195388D20070C39A /* XCTest.framework */, 126 | 752DB0F7F77FBF274E48F13B /* Pods_LXDTimerManager_Example.framework */, 127 | 7A4354728909EBCC478440C0 /* Pods_LXDTimerManager_Tests.framework */, 128 | ); 129 | name = Frameworks; 130 | sourceTree = ""; 131 | }; 132 | 6003F593195388D20070C39A /* Example for LXDTimerManager */ = { 133 | isa = PBXGroup; 134 | children = ( 135 | 6003F59C195388D20070C39A /* LXDAppDelegate.h */, 136 | 6003F59D195388D20070C39A /* LXDAppDelegate.m */, 137 | 873B8AEA1B1F5CCA007FD442 /* Main.storyboard */, 138 | 6003F5A5195388D20070C39A /* LXDViewController.h */, 139 | 6003F5A6195388D20070C39A /* LXDViewController.m */, 140 | 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */, 141 | 6003F5A8195388D20070C39A /* Images.xcassets */, 142 | 6003F594195388D20070C39A /* Supporting Files */, 143 | ); 144 | name = "Example for LXDTimerManager"; 145 | path = LXDTimerManager; 146 | sourceTree = ""; 147 | }; 148 | 6003F594195388D20070C39A /* Supporting Files */ = { 149 | isa = PBXGroup; 150 | children = ( 151 | 6003F595195388D20070C39A /* LXDTimerManager-Info.plist */, 152 | 6003F596195388D20070C39A /* InfoPlist.strings */, 153 | 6003F599195388D20070C39A /* main.m */, 154 | 6003F59B195388D20070C39A /* LXDTimerManager-Prefix.pch */, 155 | ); 156 | name = "Supporting Files"; 157 | sourceTree = ""; 158 | }; 159 | 6003F5B5195388D20070C39A /* Tests */ = { 160 | isa = PBXGroup; 161 | children = ( 162 | 6003F5BB195388D20070C39A /* Tests.m */, 163 | 6003F5B6195388D20070C39A /* Supporting Files */, 164 | ); 165 | path = Tests; 166 | sourceTree = ""; 167 | }; 168 | 6003F5B6195388D20070C39A /* Supporting Files */ = { 169 | isa = PBXGroup; 170 | children = ( 171 | 6003F5B7195388D20070C39A /* Tests-Info.plist */, 172 | 6003F5B8195388D20070C39A /* InfoPlist.strings */, 173 | 606FC2411953D9B200FFA9A0 /* Tests-Prefix.pch */, 174 | ); 175 | name = "Supporting Files"; 176 | sourceTree = ""; 177 | }; 178 | 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = { 179 | isa = PBXGroup; 180 | children = ( 181 | 1CEFC6CC30507ECD8B82A79F /* LXDTimerManager.podspec */, 182 | 9574CD530B87BD1A8FA3B872 /* README.md */, 183 | BA2060442D6B3BF54C2B6D18 /* LICENSE */, 184 | ); 185 | name = "Podspec Metadata"; 186 | sourceTree = ""; 187 | }; 188 | FEB33B7DF534ED0026CECE94 /* Pods */ = { 189 | isa = PBXGroup; 190 | children = ( 191 | 8625F3ACD41B494F4A8A97F3 /* Pods-LXDTimerManager_Example.debug.xcconfig */, 192 | 72FE988EDD320430BAD363F7 /* Pods-LXDTimerManager_Example.release.xcconfig */, 193 | 1E2AFD5DBD307BAE91CCA6C4 /* Pods-LXDTimerManager_Tests.debug.xcconfig */, 194 | 7EA67C48C3BE811D9CE5A92C /* Pods-LXDTimerManager_Tests.release.xcconfig */, 195 | ); 196 | name = Pods; 197 | sourceTree = ""; 198 | }; 199 | /* End PBXGroup section */ 200 | 201 | /* Begin PBXNativeTarget section */ 202 | 6003F589195388D20070C39A /* LXDTimerManager_Example */ = { 203 | isa = PBXNativeTarget; 204 | buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "LXDTimerManager_Example" */; 205 | buildPhases = ( 206 | D9A735CE53A2D73077A3615F /* [CP] Check Pods Manifest.lock */, 207 | 6003F586195388D20070C39A /* Sources */, 208 | 6003F587195388D20070C39A /* Frameworks */, 209 | 6003F588195388D20070C39A /* Resources */, 210 | B590342A9F1BBB629C43A8FB /* [CP] Embed Pods Frameworks */, 211 | 0779290D8419C57C88A349A9 /* [CP] Copy Pods Resources */, 212 | ); 213 | buildRules = ( 214 | ); 215 | dependencies = ( 216 | ); 217 | name = LXDTimerManager_Example; 218 | productName = LXDTimerManager; 219 | productReference = 6003F58A195388D20070C39A /* LXDTimerManager_Example.app */; 220 | productType = "com.apple.product-type.application"; 221 | }; 222 | 6003F5AD195388D20070C39A /* LXDTimerManager_Tests */ = { 223 | isa = PBXNativeTarget; 224 | buildConfigurationList = 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "LXDTimerManager_Tests" */; 225 | buildPhases = ( 226 | CD6FA04CA92599B025BC5BAF /* [CP] Check Pods Manifest.lock */, 227 | 6003F5AA195388D20070C39A /* Sources */, 228 | 6003F5AB195388D20070C39A /* Frameworks */, 229 | 6003F5AC195388D20070C39A /* Resources */, 230 | B7F163C9ACBCE07F945D1C0F /* [CP] Embed Pods Frameworks */, 231 | 48A1E06E879DB70981C98DE2 /* [CP] Copy Pods Resources */, 232 | ); 233 | buildRules = ( 234 | ); 235 | dependencies = ( 236 | 6003F5B4195388D20070C39A /* PBXTargetDependency */, 237 | ); 238 | name = LXDTimerManager_Tests; 239 | productName = LXDTimerManagerTests; 240 | productReference = 6003F5AE195388D20070C39A /* LXDTimerManager_Tests.xctest */; 241 | productType = "com.apple.product-type.bundle.unit-test"; 242 | }; 243 | /* End PBXNativeTarget section */ 244 | 245 | /* Begin PBXProject section */ 246 | 6003F582195388D10070C39A /* Project object */ = { 247 | isa = PBXProject; 248 | attributes = { 249 | CLASSPREFIX = LXD; 250 | LastUpgradeCheck = 0720; 251 | ORGANIZATIONNAME = JustkeepRunning; 252 | TargetAttributes = { 253 | 6003F5AD195388D20070C39A = { 254 | TestTargetID = 6003F589195388D20070C39A; 255 | }; 256 | }; 257 | }; 258 | buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "LXDTimerManager" */; 259 | compatibilityVersion = "Xcode 3.2"; 260 | developmentRegion = English; 261 | hasScannedForEncodings = 0; 262 | knownRegions = ( 263 | en, 264 | Base, 265 | ); 266 | mainGroup = 6003F581195388D10070C39A; 267 | productRefGroup = 6003F58B195388D20070C39A /* Products */; 268 | projectDirPath = ""; 269 | projectRoot = ""; 270 | targets = ( 271 | 6003F589195388D20070C39A /* LXDTimerManager_Example */, 272 | 6003F5AD195388D20070C39A /* LXDTimerManager_Tests */, 273 | ); 274 | }; 275 | /* End PBXProject section */ 276 | 277 | /* Begin PBXResourcesBuildPhase section */ 278 | 6003F588195388D20070C39A /* Resources */ = { 279 | isa = PBXResourcesBuildPhase; 280 | buildActionMask = 2147483647; 281 | files = ( 282 | 873B8AEB1B1F5CCA007FD442 /* Main.storyboard in Resources */, 283 | 71719F9F1E33DC2100824A3D /* LaunchScreen.storyboard in Resources */, 284 | 6003F5A9195388D20070C39A /* Images.xcassets in Resources */, 285 | 6003F598195388D20070C39A /* InfoPlist.strings in Resources */, 286 | ); 287 | runOnlyForDeploymentPostprocessing = 0; 288 | }; 289 | 6003F5AC195388D20070C39A /* Resources */ = { 290 | isa = PBXResourcesBuildPhase; 291 | buildActionMask = 2147483647; 292 | files = ( 293 | 6003F5BA195388D20070C39A /* InfoPlist.strings in Resources */, 294 | ); 295 | runOnlyForDeploymentPostprocessing = 0; 296 | }; 297 | /* End PBXResourcesBuildPhase section */ 298 | 299 | /* Begin PBXShellScriptBuildPhase section */ 300 | 0779290D8419C57C88A349A9 /* [CP] Copy Pods Resources */ = { 301 | isa = PBXShellScriptBuildPhase; 302 | buildActionMask = 2147483647; 303 | files = ( 304 | ); 305 | inputPaths = ( 306 | ); 307 | name = "[CP] Copy Pods Resources"; 308 | outputPaths = ( 309 | ); 310 | runOnlyForDeploymentPostprocessing = 0; 311 | shellPath = /bin/sh; 312 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-LXDTimerManager_Example/Pods-LXDTimerManager_Example-resources.sh\"\n"; 313 | showEnvVarsInLog = 0; 314 | }; 315 | 48A1E06E879DB70981C98DE2 /* [CP] Copy Pods Resources */ = { 316 | isa = PBXShellScriptBuildPhase; 317 | buildActionMask = 2147483647; 318 | files = ( 319 | ); 320 | inputPaths = ( 321 | ); 322 | name = "[CP] Copy Pods Resources"; 323 | outputPaths = ( 324 | ); 325 | runOnlyForDeploymentPostprocessing = 0; 326 | shellPath = /bin/sh; 327 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-LXDTimerManager_Tests/Pods-LXDTimerManager_Tests-resources.sh\"\n"; 328 | showEnvVarsInLog = 0; 329 | }; 330 | B590342A9F1BBB629C43A8FB /* [CP] Embed Pods Frameworks */ = { 331 | isa = PBXShellScriptBuildPhase; 332 | buildActionMask = 2147483647; 333 | files = ( 334 | ); 335 | inputPaths = ( 336 | "${SRCROOT}/Pods/Target Support Files/Pods-LXDTimerManager_Example/Pods-LXDTimerManager_Example-frameworks.sh", 337 | "${BUILT_PRODUCTS_DIR}/LXDTimerManager/LXDTimerManager.framework", 338 | ); 339 | name = "[CP] Embed Pods Frameworks"; 340 | outputPaths = ( 341 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/LXDTimerManager.framework", 342 | ); 343 | runOnlyForDeploymentPostprocessing = 0; 344 | shellPath = /bin/sh; 345 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-LXDTimerManager_Example/Pods-LXDTimerManager_Example-frameworks.sh\"\n"; 346 | showEnvVarsInLog = 0; 347 | }; 348 | B7F163C9ACBCE07F945D1C0F /* [CP] Embed Pods Frameworks */ = { 349 | isa = PBXShellScriptBuildPhase; 350 | buildActionMask = 2147483647; 351 | files = ( 352 | ); 353 | inputPaths = ( 354 | ); 355 | name = "[CP] Embed Pods Frameworks"; 356 | outputPaths = ( 357 | ); 358 | runOnlyForDeploymentPostprocessing = 0; 359 | shellPath = /bin/sh; 360 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-LXDTimerManager_Tests/Pods-LXDTimerManager_Tests-frameworks.sh\"\n"; 361 | showEnvVarsInLog = 0; 362 | }; 363 | CD6FA04CA92599B025BC5BAF /* [CP] Check Pods Manifest.lock */ = { 364 | isa = PBXShellScriptBuildPhase; 365 | buildActionMask = 2147483647; 366 | files = ( 367 | ); 368 | inputPaths = ( 369 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 370 | "${PODS_ROOT}/Manifest.lock", 371 | ); 372 | name = "[CP] Check Pods Manifest.lock"; 373 | outputPaths = ( 374 | "$(DERIVED_FILE_DIR)/Pods-LXDTimerManager_Tests-checkManifestLockResult.txt", 375 | ); 376 | runOnlyForDeploymentPostprocessing = 0; 377 | shellPath = /bin/sh; 378 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 379 | showEnvVarsInLog = 0; 380 | }; 381 | D9A735CE53A2D73077A3615F /* [CP] Check Pods Manifest.lock */ = { 382 | isa = PBXShellScriptBuildPhase; 383 | buildActionMask = 2147483647; 384 | files = ( 385 | ); 386 | inputPaths = ( 387 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 388 | "${PODS_ROOT}/Manifest.lock", 389 | ); 390 | name = "[CP] Check Pods Manifest.lock"; 391 | outputPaths = ( 392 | "$(DERIVED_FILE_DIR)/Pods-LXDTimerManager_Example-checkManifestLockResult.txt", 393 | ); 394 | runOnlyForDeploymentPostprocessing = 0; 395 | shellPath = /bin/sh; 396 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 397 | showEnvVarsInLog = 0; 398 | }; 399 | /* End PBXShellScriptBuildPhase section */ 400 | 401 | /* Begin PBXSourcesBuildPhase section */ 402 | 6003F586195388D20070C39A /* Sources */ = { 403 | isa = PBXSourcesBuildPhase; 404 | buildActionMask = 2147483647; 405 | files = ( 406 | 6003F59E195388D20070C39A /* LXDAppDelegate.m in Sources */, 407 | 6003F5A7195388D20070C39A /* LXDViewController.m in Sources */, 408 | 6003F59A195388D20070C39A /* main.m in Sources */, 409 | ); 410 | runOnlyForDeploymentPostprocessing = 0; 411 | }; 412 | 6003F5AA195388D20070C39A /* Sources */ = { 413 | isa = PBXSourcesBuildPhase; 414 | buildActionMask = 2147483647; 415 | files = ( 416 | 6003F5BC195388D20070C39A /* Tests.m in Sources */, 417 | ); 418 | runOnlyForDeploymentPostprocessing = 0; 419 | }; 420 | /* End PBXSourcesBuildPhase section */ 421 | 422 | /* Begin PBXTargetDependency section */ 423 | 6003F5B4195388D20070C39A /* PBXTargetDependency */ = { 424 | isa = PBXTargetDependency; 425 | target = 6003F589195388D20070C39A /* LXDTimerManager_Example */; 426 | targetProxy = 6003F5B3195388D20070C39A /* PBXContainerItemProxy */; 427 | }; 428 | /* End PBXTargetDependency section */ 429 | 430 | /* Begin PBXVariantGroup section */ 431 | 6003F596195388D20070C39A /* InfoPlist.strings */ = { 432 | isa = PBXVariantGroup; 433 | children = ( 434 | 6003F597195388D20070C39A /* en */, 435 | ); 436 | name = InfoPlist.strings; 437 | sourceTree = ""; 438 | }; 439 | 6003F5B8195388D20070C39A /* InfoPlist.strings */ = { 440 | isa = PBXVariantGroup; 441 | children = ( 442 | 6003F5B9195388D20070C39A /* en */, 443 | ); 444 | name = InfoPlist.strings; 445 | sourceTree = ""; 446 | }; 447 | 71719F9D1E33DC2100824A3D /* LaunchScreen.storyboard */ = { 448 | isa = PBXVariantGroup; 449 | children = ( 450 | 71719F9E1E33DC2100824A3D /* Base */, 451 | ); 452 | name = LaunchScreen.storyboard; 453 | sourceTree = ""; 454 | }; 455 | /* End PBXVariantGroup section */ 456 | 457 | /* Begin XCBuildConfiguration section */ 458 | 6003F5BD195388D20070C39A /* Debug */ = { 459 | isa = XCBuildConfiguration; 460 | buildSettings = { 461 | ALWAYS_SEARCH_USER_PATHS = NO; 462 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 463 | CLANG_CXX_LIBRARY = "libc++"; 464 | CLANG_ENABLE_MODULES = YES; 465 | CLANG_ENABLE_OBJC_ARC = YES; 466 | CLANG_WARN_BOOL_CONVERSION = YES; 467 | CLANG_WARN_CONSTANT_CONVERSION = YES; 468 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 469 | CLANG_WARN_EMPTY_BODY = YES; 470 | CLANG_WARN_ENUM_CONVERSION = YES; 471 | CLANG_WARN_INT_CONVERSION = YES; 472 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 473 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 474 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 475 | COPY_PHASE_STRIP = NO; 476 | ENABLE_TESTABILITY = YES; 477 | GCC_C_LANGUAGE_STANDARD = gnu99; 478 | GCC_DYNAMIC_NO_PIC = NO; 479 | GCC_OPTIMIZATION_LEVEL = 0; 480 | GCC_PREPROCESSOR_DEFINITIONS = ( 481 | "DEBUG=1", 482 | "$(inherited)", 483 | ); 484 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 485 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 486 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 487 | GCC_WARN_UNDECLARED_SELECTOR = YES; 488 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 489 | GCC_WARN_UNUSED_FUNCTION = YES; 490 | GCC_WARN_UNUSED_VARIABLE = YES; 491 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 492 | ONLY_ACTIVE_ARCH = YES; 493 | SDKROOT = iphoneos; 494 | TARGETED_DEVICE_FAMILY = "1,2"; 495 | }; 496 | name = Debug; 497 | }; 498 | 6003F5BE195388D20070C39A /* Release */ = { 499 | isa = XCBuildConfiguration; 500 | buildSettings = { 501 | ALWAYS_SEARCH_USER_PATHS = NO; 502 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 503 | CLANG_CXX_LIBRARY = "libc++"; 504 | CLANG_ENABLE_MODULES = YES; 505 | CLANG_ENABLE_OBJC_ARC = YES; 506 | CLANG_WARN_BOOL_CONVERSION = YES; 507 | CLANG_WARN_CONSTANT_CONVERSION = YES; 508 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 509 | CLANG_WARN_EMPTY_BODY = YES; 510 | CLANG_WARN_ENUM_CONVERSION = YES; 511 | CLANG_WARN_INT_CONVERSION = YES; 512 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 513 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 514 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 515 | COPY_PHASE_STRIP = YES; 516 | ENABLE_NS_ASSERTIONS = NO; 517 | GCC_C_LANGUAGE_STANDARD = gnu99; 518 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 519 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 520 | GCC_WARN_UNDECLARED_SELECTOR = YES; 521 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 522 | GCC_WARN_UNUSED_FUNCTION = YES; 523 | GCC_WARN_UNUSED_VARIABLE = YES; 524 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 525 | SDKROOT = iphoneos; 526 | TARGETED_DEVICE_FAMILY = "1,2"; 527 | VALIDATE_PRODUCT = YES; 528 | }; 529 | name = Release; 530 | }; 531 | 6003F5C0195388D20070C39A /* Debug */ = { 532 | isa = XCBuildConfiguration; 533 | baseConfigurationReference = 8625F3ACD41B494F4A8A97F3 /* Pods-LXDTimerManager_Example.debug.xcconfig */; 534 | buildSettings = { 535 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 536 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 537 | GCC_PREFIX_HEADER = "LXDTimerManager/LXDTimerManager-Prefix.pch"; 538 | INFOPLIST_FILE = "LXDTimerManager/LXDTimerManager-Info.plist"; 539 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 540 | MODULE_NAME = ExampleApp; 541 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 542 | PRODUCT_NAME = "$(TARGET_NAME)"; 543 | WRAPPER_EXTENSION = app; 544 | }; 545 | name = Debug; 546 | }; 547 | 6003F5C1195388D20070C39A /* Release */ = { 548 | isa = XCBuildConfiguration; 549 | baseConfigurationReference = 72FE988EDD320430BAD363F7 /* Pods-LXDTimerManager_Example.release.xcconfig */; 550 | buildSettings = { 551 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 552 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 553 | GCC_PREFIX_HEADER = "LXDTimerManager/LXDTimerManager-Prefix.pch"; 554 | INFOPLIST_FILE = "LXDTimerManager/LXDTimerManager-Info.plist"; 555 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 556 | MODULE_NAME = ExampleApp; 557 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 558 | PRODUCT_NAME = "$(TARGET_NAME)"; 559 | WRAPPER_EXTENSION = app; 560 | }; 561 | name = Release; 562 | }; 563 | 6003F5C3195388D20070C39A /* Debug */ = { 564 | isa = XCBuildConfiguration; 565 | baseConfigurationReference = 1E2AFD5DBD307BAE91CCA6C4 /* Pods-LXDTimerManager_Tests.debug.xcconfig */; 566 | buildSettings = { 567 | BUNDLE_LOADER = "$(TEST_HOST)"; 568 | FRAMEWORK_SEARCH_PATHS = ( 569 | "$(SDKROOT)/Developer/Library/Frameworks", 570 | "$(inherited)", 571 | "$(DEVELOPER_FRAMEWORKS_DIR)", 572 | ); 573 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 574 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 575 | GCC_PREPROCESSOR_DEFINITIONS = ( 576 | "DEBUG=1", 577 | "$(inherited)", 578 | ); 579 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 580 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 581 | PRODUCT_NAME = "$(TARGET_NAME)"; 582 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/LXDTimerManager_Example.app/LXDTimerManager_Example"; 583 | WRAPPER_EXTENSION = xctest; 584 | }; 585 | name = Debug; 586 | }; 587 | 6003F5C4195388D20070C39A /* Release */ = { 588 | isa = XCBuildConfiguration; 589 | baseConfigurationReference = 7EA67C48C3BE811D9CE5A92C /* Pods-LXDTimerManager_Tests.release.xcconfig */; 590 | buildSettings = { 591 | BUNDLE_LOADER = "$(TEST_HOST)"; 592 | FRAMEWORK_SEARCH_PATHS = ( 593 | "$(SDKROOT)/Developer/Library/Frameworks", 594 | "$(inherited)", 595 | "$(DEVELOPER_FRAMEWORKS_DIR)", 596 | ); 597 | GCC_PRECOMPILE_PREFIX_HEADER = YES; 598 | GCC_PREFIX_HEADER = "Tests/Tests-Prefix.pch"; 599 | INFOPLIST_FILE = "Tests/Tests-Info.plist"; 600 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; 601 | PRODUCT_NAME = "$(TARGET_NAME)"; 602 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/LXDTimerManager_Example.app/LXDTimerManager_Example"; 603 | WRAPPER_EXTENSION = xctest; 604 | }; 605 | name = Release; 606 | }; 607 | /* End XCBuildConfiguration section */ 608 | 609 | /* Begin XCConfigurationList section */ 610 | 6003F585195388D10070C39A /* Build configuration list for PBXProject "LXDTimerManager" */ = { 611 | isa = XCConfigurationList; 612 | buildConfigurations = ( 613 | 6003F5BD195388D20070C39A /* Debug */, 614 | 6003F5BE195388D20070C39A /* Release */, 615 | ); 616 | defaultConfigurationIsVisible = 0; 617 | defaultConfigurationName = Release; 618 | }; 619 | 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "LXDTimerManager_Example" */ = { 620 | isa = XCConfigurationList; 621 | buildConfigurations = ( 622 | 6003F5C0195388D20070C39A /* Debug */, 623 | 6003F5C1195388D20070C39A /* Release */, 624 | ); 625 | defaultConfigurationIsVisible = 0; 626 | defaultConfigurationName = Release; 627 | }; 628 | 6003F5C2195388D20070C39A /* Build configuration list for PBXNativeTarget "LXDTimerManager_Tests" */ = { 629 | isa = XCConfigurationList; 630 | buildConfigurations = ( 631 | 6003F5C3195388D20070C39A /* Debug */, 632 | 6003F5C4195388D20070C39A /* Release */, 633 | ); 634 | defaultConfigurationIsVisible = 0; 635 | defaultConfigurationName = Release; 636 | }; 637 | /* End XCConfigurationList section */ 638 | }; 639 | rootObject = 6003F582195388D10070C39A /* Project object */; 640 | } 641 | -------------------------------------------------------------------------------- /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 | 01750DEC76F69485D2902B508845CAF7 /* LXDTimerManager-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3A76EF1A8B51FCDD96DAEBF560AAF697 /* LXDTimerManager-dummy.m */; }; 11 | 43555032966B59D4E1F37B8098AA5663 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; 12 | 4E5DB3FC77C3036FB2CFC7BE6A2D2B56 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; 13 | 4F524709590C19A0CD5D380FC20483D2 /* Pods-LXDTimerManager_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E75405FAC3E0975E8B82C0771CD49DAB /* Pods-LXDTimerManager_Tests-dummy.m */; }; 14 | 78E22A969FCB1A319DE066CD86FDAFA1 /* LXDTimerManager-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A0FA3B5254D5106859D7537753769E8C /* LXDTimerManager-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 15 | B404C445803C88794BD16AB9F54C0731 /* Pods-LXDTimerManager_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DBA11AE1E5FD3970AEFDDE2F1562770C /* Pods-LXDTimerManager_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 16 | BD83D61C5780F5BD4350F0C670A48171 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */; }; 17 | D7744B91E185C6DAB1CA48709F589543 /* Pods-LXDTimerManager_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CDCCBDB5AD75FE7B5ABCF4B69FFF63AF /* Pods-LXDTimerManager_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 18 | EF146B321FFF860100BB2B1D /* NSObject+PerformTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = EF146B2B1FFF85AA00BB2B1D /* NSObject+PerformTimer.h */; settings = {ATTRIBUTES = (Public, ); }; }; 19 | EF24E0A520006875003E94EA /* LXDTimerManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = EF146B291FFF85AA00BB2B1D /* LXDTimerManager.mm */; }; 20 | EF24E0A620006875003E94EA /* LXDTimerManager.h in Sources */ = {isa = PBXBuildFile; fileRef = EF146B2A1FFF85AA00BB2B1D /* LXDTimerManager.h */; }; 21 | EF24E0A720006875003E94EA /* NSObject+PerformTimer.h in Sources */ = {isa = PBXBuildFile; fileRef = EF146B2B1FFF85AA00BB2B1D /* NSObject+PerformTimer.h */; }; 22 | EF24E0A820006875003E94EA /* NSObject+PerformTimer.m in Sources */ = {isa = PBXBuildFile; fileRef = EF146B281FFF85AA00BB2B1D /* NSObject+PerformTimer.m */; }; 23 | EF24E0A920006875003E94EA /* LXDTimerStructure.h in Sources */ = {isa = PBXBuildFile; fileRef = EF146B311FFF85AA00BB2B1D /* LXDTimerStructure.h */; }; 24 | EF24E0AA2000687A003E94EA /* LXDBaseHashmap.h in Sources */ = {isa = PBXBuildFile; fileRef = EF146B2F1FFF85AA00BB2B1D /* LXDBaseHashmap.h */; }; 25 | EF24E0AB2000687A003E94EA /* LXDBaseHashmap.mm in Sources */ = {isa = PBXBuildFile; fileRef = EF146B2D1FFF85AA00BB2B1D /* LXDBaseHashmap.mm */; }; 26 | EF24E0AC2000687A003E94EA /* LXDReceiverHashmap.h in Sources */ = {isa = PBXBuildFile; fileRef = EF146B2E1FFF85AA00BB2B1D /* LXDReceiverHashmap.h */; }; 27 | EF24E0AD2000687A003E94EA /* LXDReceiverHashmap.mm in Sources */ = {isa = PBXBuildFile; fileRef = EF146B301FFF85AA00BB2B1D /* LXDReceiverHashmap.mm */; }; 28 | F3945A26C972464075A0703AAEADB02E /* Pods-LXDTimerManager_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C5B020C8EE3349E50542C6E6BBBD8A2F /* Pods-LXDTimerManager_Example-dummy.m */; }; 29 | /* End PBXBuildFile section */ 30 | 31 | /* Begin PBXContainerItemProxy section */ 32 | 1B70C10E2B992B55B82E5C731B5A27FC /* PBXContainerItemProxy */ = { 33 | isa = PBXContainerItemProxy; 34 | containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 35 | proxyType = 1; 36 | remoteGlobalIDString = 6BD1A23EE671BFB0A20B092838C71CF3; 37 | remoteInfo = LXDTimerManager; 38 | }; 39 | /* End PBXContainerItemProxy section */ 40 | 41 | /* Begin PBXFileReference section */ 42 | 07FBE8334613C18D2AD00860C8A07B35 /* Pods_LXDTimerManager_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_LXDTimerManager_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 43 | 2A18EF9FC3D2541399ED62326A0073CF /* LXDTimerManager.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LXDTimerManager.xcconfig; sourceTree = ""; }; 44 | 3A76EF1A8B51FCDD96DAEBF560AAF697 /* LXDTimerManager-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "LXDTimerManager-dummy.m"; sourceTree = ""; }; 45 | 439B19A3B881DE270AB5BD5DE75DE6B5 /* Pods-LXDTimerManager_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-LXDTimerManager_Example.modulemap"; sourceTree = ""; }; 46 | 5C7CB1D17637FB7DE5BD1C7622A3437B /* Pods-LXDTimerManager_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-LXDTimerManager_Tests-resources.sh"; sourceTree = ""; }; 47 | 5FFF50EB9BFDEBB85C024A6A82FAB947 /* Pods-LXDTimerManager_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LXDTimerManager_Tests.debug.xcconfig"; sourceTree = ""; }; 48 | 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; }; 49 | 6DDEB046770C22DEBF65489451D2F8B3 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 50 | 6E6CC5035D01345B89CD9F2659E0C836 /* LXDTimerManager-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LXDTimerManager-prefix.pch"; sourceTree = ""; }; 51 | 79008D7C913FC8A93985F6C9E31D9C2C /* Pods-LXDTimerManager_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-LXDTimerManager_Example-frameworks.sh"; sourceTree = ""; }; 52 | 7F05C5A6A7637B4FC2694EA7ACF05C22 /* Pods-LXDTimerManager_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-LXDTimerManager_Example-acknowledgements.plist"; sourceTree = ""; }; 53 | 80932856C033AD220A0AB3E596EEF249 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 54 | 835719266B855A8E36D5FFD6DAF4EA89 /* Pods-LXDTimerManager_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-LXDTimerManager_Example-resources.sh"; sourceTree = ""; }; 55 | 8B1922A00D42BB7CC6B70D23CE39FACF /* Pods-LXDTimerManager_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-LXDTimerManager_Tests-frameworks.sh"; sourceTree = ""; }; 56 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 57 | 9BC0772F4DE3D88C74616EE41C208890 /* Pods-LXDTimerManager_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LXDTimerManager_Example.debug.xcconfig"; sourceTree = ""; }; 58 | A0FA3B5254D5106859D7537753769E8C /* LXDTimerManager-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LXDTimerManager-umbrella.h"; sourceTree = ""; }; 59 | A27F75E12AF56AEB0540636F9C198630 /* Pods-LXDTimerManager_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LXDTimerManager_Tests.release.xcconfig"; sourceTree = ""; }; 60 | A65AB7FBD74F585A1D04CB6F93B6AEC1 /* LXDTimerManager.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = LXDTimerManager.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 61 | A8EF595379D4BE0A640424C5B6873FE7 /* Pods_LXDTimerManager_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_LXDTimerManager_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 62 | B8DA31579AC496B7516BB01E011DD87A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 63 | C3B0B514817F10C6F6B821D89C2FA9F8 /* Pods-LXDTimerManager_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-LXDTimerManager_Tests-acknowledgements.markdown"; sourceTree = ""; }; 64 | C5B020C8EE3349E50542C6E6BBBD8A2F /* Pods-LXDTimerManager_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-LXDTimerManager_Example-dummy.m"; sourceTree = ""; }; 65 | CDCCBDB5AD75FE7B5ABCF4B69FFF63AF /* Pods-LXDTimerManager_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-LXDTimerManager_Example-umbrella.h"; sourceTree = ""; }; 66 | D8415C7BA9033E5286BDC47936ABC243 /* LXDTimerManager.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = LXDTimerManager.modulemap; sourceTree = ""; }; 67 | DB6A3F946D4282A95FCBEE4C0BEF024A /* Pods-LXDTimerManager_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-LXDTimerManager_Tests.modulemap"; sourceTree = ""; }; 68 | DBA11AE1E5FD3970AEFDDE2F1562770C /* Pods-LXDTimerManager_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-LXDTimerManager_Tests-umbrella.h"; sourceTree = ""; }; 69 | DED63933C6F9D9A28F302D6946ADE647 /* Pods-LXDTimerManager_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-LXDTimerManager_Example-acknowledgements.markdown"; sourceTree = ""; }; 70 | E4984A36E15020D466E5DDD986A7C61A /* Pods-LXDTimerManager_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-LXDTimerManager_Tests-acknowledgements.plist"; sourceTree = ""; }; 71 | E75405FAC3E0975E8B82C0771CD49DAB /* Pods-LXDTimerManager_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-LXDTimerManager_Tests-dummy.m"; sourceTree = ""; }; 72 | EF146B281FFF85AA00BB2B1D /* NSObject+PerformTimer.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "NSObject+PerformTimer.m"; sourceTree = ""; }; 73 | EF146B291FFF85AA00BB2B1D /* LXDTimerManager.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = LXDTimerManager.mm; sourceTree = ""; }; 74 | EF146B2A1FFF85AA00BB2B1D /* LXDTimerManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LXDTimerManager.h; sourceTree = ""; }; 75 | EF146B2B1FFF85AA00BB2B1D /* NSObject+PerformTimer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSObject+PerformTimer.h"; sourceTree = ""; }; 76 | EF146B2D1FFF85AA00BB2B1D /* LXDBaseHashmap.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = LXDBaseHashmap.mm; sourceTree = ""; }; 77 | EF146B2E1FFF85AA00BB2B1D /* LXDReceiverHashmap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LXDReceiverHashmap.h; sourceTree = ""; }; 78 | EF146B2F1FFF85AA00BB2B1D /* LXDBaseHashmap.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LXDBaseHashmap.h; sourceTree = ""; }; 79 | EF146B301FFF85AA00BB2B1D /* LXDReceiverHashmap.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = LXDReceiverHashmap.mm; sourceTree = ""; }; 80 | EF146B311FFF85AA00BB2B1D /* LXDTimerStructure.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LXDTimerStructure.h; sourceTree = ""; }; 81 | F4A6C489A5FCDEF42A8EE28B5EED91D7 /* Pods-LXDTimerManager_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-LXDTimerManager_Example.release.xcconfig"; sourceTree = ""; }; 82 | /* End PBXFileReference section */ 83 | 84 | /* Begin PBXFrameworksBuildPhase section */ 85 | 0445C6D4E80075BB3066247D32D2BC6B /* Frameworks */ = { 86 | isa = PBXFrameworksBuildPhase; 87 | buildActionMask = 2147483647; 88 | files = ( 89 | BD83D61C5780F5BD4350F0C670A48171 /* Foundation.framework in Frameworks */, 90 | ); 91 | runOnlyForDeploymentPostprocessing = 0; 92 | }; 93 | DAF445970DB5B314B880F8574E4FEA71 /* Frameworks */ = { 94 | isa = PBXFrameworksBuildPhase; 95 | buildActionMask = 2147483647; 96 | files = ( 97 | 43555032966B59D4E1F37B8098AA5663 /* Foundation.framework in Frameworks */, 98 | ); 99 | runOnlyForDeploymentPostprocessing = 0; 100 | }; 101 | FED30934075B1ADDAD8C02E3B596F246 /* Frameworks */ = { 102 | isa = PBXFrameworksBuildPhase; 103 | buildActionMask = 2147483647; 104 | files = ( 105 | 4E5DB3FC77C3036FB2CFC7BE6A2D2B56 /* Foundation.framework in Frameworks */, 106 | ); 107 | runOnlyForDeploymentPostprocessing = 0; 108 | }; 109 | /* End PBXFrameworksBuildPhase section */ 110 | 111 | /* Begin PBXGroup section */ 112 | 49EE6A02759EB774DD75C4F1749DFC6C /* Support Files */ = { 113 | isa = PBXGroup; 114 | children = ( 115 | 6DDEB046770C22DEBF65489451D2F8B3 /* Info.plist */, 116 | D8415C7BA9033E5286BDC47936ABC243 /* LXDTimerManager.modulemap */, 117 | 2A18EF9FC3D2541399ED62326A0073CF /* LXDTimerManager.xcconfig */, 118 | 3A76EF1A8B51FCDD96DAEBF560AAF697 /* LXDTimerManager-dummy.m */, 119 | 6E6CC5035D01345B89CD9F2659E0C836 /* LXDTimerManager-prefix.pch */, 120 | A0FA3B5254D5106859D7537753769E8C /* LXDTimerManager-umbrella.h */, 121 | ); 122 | name = "Support Files"; 123 | path = "Example/Pods/Target Support Files/LXDTimerManager"; 124 | sourceTree = ""; 125 | }; 126 | 78C4AA2ECA8B551D976A2BAF31A6A059 /* Pods-LXDTimerManager_Example */ = { 127 | isa = PBXGroup; 128 | children = ( 129 | B8DA31579AC496B7516BB01E011DD87A /* Info.plist */, 130 | 439B19A3B881DE270AB5BD5DE75DE6B5 /* Pods-LXDTimerManager_Example.modulemap */, 131 | DED63933C6F9D9A28F302D6946ADE647 /* Pods-LXDTimerManager_Example-acknowledgements.markdown */, 132 | 7F05C5A6A7637B4FC2694EA7ACF05C22 /* Pods-LXDTimerManager_Example-acknowledgements.plist */, 133 | C5B020C8EE3349E50542C6E6BBBD8A2F /* Pods-LXDTimerManager_Example-dummy.m */, 134 | 79008D7C913FC8A93985F6C9E31D9C2C /* Pods-LXDTimerManager_Example-frameworks.sh */, 135 | 835719266B855A8E36D5FFD6DAF4EA89 /* Pods-LXDTimerManager_Example-resources.sh */, 136 | CDCCBDB5AD75FE7B5ABCF4B69FFF63AF /* Pods-LXDTimerManager_Example-umbrella.h */, 137 | 9BC0772F4DE3D88C74616EE41C208890 /* Pods-LXDTimerManager_Example.debug.xcconfig */, 138 | F4A6C489A5FCDEF42A8EE28B5EED91D7 /* Pods-LXDTimerManager_Example.release.xcconfig */, 139 | ); 140 | name = "Pods-LXDTimerManager_Example"; 141 | path = "Target Support Files/Pods-LXDTimerManager_Example"; 142 | sourceTree = ""; 143 | }; 144 | 7DB346D0F39D3F0E887471402A8071AB = { 145 | isa = PBXGroup; 146 | children = ( 147 | 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, 148 | CC7119E05E50C5800F3B0E83F64C6374 /* Development Pods */, 149 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, 150 | C83AF0DBC3C8DC7979A1E57C19ED7023 /* Products */, 151 | FB03E2F4CD453CF3CB86DC7AFF20AE63 /* Targets Support Files */, 152 | ); 153 | sourceTree = ""; 154 | }; 155 | 907CD78AADB777260A0C9534C5415AC8 /* LXDTimerManager */ = { 156 | isa = PBXGroup; 157 | children = ( 158 | EF146B271FFF85AA00BB2B1D /* object-c */, 159 | EF146B2C1FFF85AA00BB2B1D /* structure */, 160 | 49EE6A02759EB774DD75C4F1749DFC6C /* Support Files */, 161 | ); 162 | name = LXDTimerManager; 163 | path = ../..; 164 | sourceTree = ""; 165 | }; 166 | B760E5757FE2F11A594E352A25AD25B4 /* Pods-LXDTimerManager_Tests */ = { 167 | isa = PBXGroup; 168 | children = ( 169 | 80932856C033AD220A0AB3E596EEF249 /* Info.plist */, 170 | DB6A3F946D4282A95FCBEE4C0BEF024A /* Pods-LXDTimerManager_Tests.modulemap */, 171 | C3B0B514817F10C6F6B821D89C2FA9F8 /* Pods-LXDTimerManager_Tests-acknowledgements.markdown */, 172 | E4984A36E15020D466E5DDD986A7C61A /* Pods-LXDTimerManager_Tests-acknowledgements.plist */, 173 | E75405FAC3E0975E8B82C0771CD49DAB /* Pods-LXDTimerManager_Tests-dummy.m */, 174 | 8B1922A00D42BB7CC6B70D23CE39FACF /* Pods-LXDTimerManager_Tests-frameworks.sh */, 175 | 5C7CB1D17637FB7DE5BD1C7622A3437B /* Pods-LXDTimerManager_Tests-resources.sh */, 176 | DBA11AE1E5FD3970AEFDDE2F1562770C /* Pods-LXDTimerManager_Tests-umbrella.h */, 177 | 5FFF50EB9BFDEBB85C024A6A82FAB947 /* Pods-LXDTimerManager_Tests.debug.xcconfig */, 178 | A27F75E12AF56AEB0540636F9C198630 /* Pods-LXDTimerManager_Tests.release.xcconfig */, 179 | ); 180 | name = "Pods-LXDTimerManager_Tests"; 181 | path = "Target Support Files/Pods-LXDTimerManager_Tests"; 182 | sourceTree = ""; 183 | }; 184 | BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { 185 | isa = PBXGroup; 186 | children = ( 187 | D35AF013A5F0BAD4F32504907A52519E /* iOS */, 188 | ); 189 | name = Frameworks; 190 | sourceTree = ""; 191 | }; 192 | C83AF0DBC3C8DC7979A1E57C19ED7023 /* Products */ = { 193 | isa = PBXGroup; 194 | children = ( 195 | A65AB7FBD74F585A1D04CB6F93B6AEC1 /* LXDTimerManager.framework */, 196 | 07FBE8334613C18D2AD00860C8A07B35 /* Pods_LXDTimerManager_Example.framework */, 197 | A8EF595379D4BE0A640424C5B6873FE7 /* Pods_LXDTimerManager_Tests.framework */, 198 | ); 199 | name = Products; 200 | sourceTree = ""; 201 | }; 202 | CC7119E05E50C5800F3B0E83F64C6374 /* Development Pods */ = { 203 | isa = PBXGroup; 204 | children = ( 205 | 907CD78AADB777260A0C9534C5415AC8 /* LXDTimerManager */, 206 | ); 207 | name = "Development Pods"; 208 | sourceTree = ""; 209 | }; 210 | D35AF013A5F0BAD4F32504907A52519E /* iOS */ = { 211 | isa = PBXGroup; 212 | children = ( 213 | 6604A7D69453B4569E4E4827FB9155A9 /* Foundation.framework */, 214 | ); 215 | name = iOS; 216 | sourceTree = ""; 217 | }; 218 | EF146B271FFF85AA00BB2B1D /* object-c */ = { 219 | isa = PBXGroup; 220 | children = ( 221 | EF146B2A1FFF85AA00BB2B1D /* LXDTimerManager.h */, 222 | EF146B291FFF85AA00BB2B1D /* LXDTimerManager.mm */, 223 | EF146B2B1FFF85AA00BB2B1D /* NSObject+PerformTimer.h */, 224 | EF146B281FFF85AA00BB2B1D /* NSObject+PerformTimer.m */, 225 | ); 226 | name = "object-c"; 227 | path = "LXDTimerManager/Classes/object-c"; 228 | sourceTree = ""; 229 | }; 230 | EF146B2C1FFF85AA00BB2B1D /* structure */ = { 231 | isa = PBXGroup; 232 | children = ( 233 | EF146B311FFF85AA00BB2B1D /* LXDTimerStructure.h */, 234 | EF146B2F1FFF85AA00BB2B1D /* LXDBaseHashmap.h */, 235 | EF146B2D1FFF85AA00BB2B1D /* LXDBaseHashmap.mm */, 236 | EF146B2E1FFF85AA00BB2B1D /* LXDReceiverHashmap.h */, 237 | EF146B301FFF85AA00BB2B1D /* LXDReceiverHashmap.mm */, 238 | ); 239 | name = structure; 240 | path = LXDTimerManager/Classes/structure; 241 | sourceTree = ""; 242 | }; 243 | FB03E2F4CD453CF3CB86DC7AFF20AE63 /* Targets Support Files */ = { 244 | isa = PBXGroup; 245 | children = ( 246 | 78C4AA2ECA8B551D976A2BAF31A6A059 /* Pods-LXDTimerManager_Example */, 247 | B760E5757FE2F11A594E352A25AD25B4 /* Pods-LXDTimerManager_Tests */, 248 | ); 249 | name = "Targets Support Files"; 250 | sourceTree = ""; 251 | }; 252 | /* End PBXGroup section */ 253 | 254 | /* Begin PBXHeadersBuildPhase section */ 255 | A93811A1EE22F9DD63CC02EC41DEBC5A /* Headers */ = { 256 | isa = PBXHeadersBuildPhase; 257 | buildActionMask = 2147483647; 258 | files = ( 259 | 78E22A969FCB1A319DE066CD86FDAFA1 /* LXDTimerManager-umbrella.h in Headers */, 260 | EF146B321FFF860100BB2B1D /* NSObject+PerformTimer.h in Headers */, 261 | ); 262 | runOnlyForDeploymentPostprocessing = 0; 263 | }; 264 | CEB8BAAABA66B1C80FDAAD3F33B5FC83 /* Headers */ = { 265 | isa = PBXHeadersBuildPhase; 266 | buildActionMask = 2147483647; 267 | files = ( 268 | B404C445803C88794BD16AB9F54C0731 /* Pods-LXDTimerManager_Tests-umbrella.h in Headers */, 269 | ); 270 | runOnlyForDeploymentPostprocessing = 0; 271 | }; 272 | EEECB6061063A33BA10788DF93F597F0 /* Headers */ = { 273 | isa = PBXHeadersBuildPhase; 274 | buildActionMask = 2147483647; 275 | files = ( 276 | D7744B91E185C6DAB1CA48709F589543 /* Pods-LXDTimerManager_Example-umbrella.h in Headers */, 277 | ); 278 | runOnlyForDeploymentPostprocessing = 0; 279 | }; 280 | /* End PBXHeadersBuildPhase section */ 281 | 282 | /* Begin PBXNativeTarget section */ 283 | 1D6D2C743DE4C66DE2CE0E208A7E7402 /* Pods-LXDTimerManager_Example */ = { 284 | isa = PBXNativeTarget; 285 | buildConfigurationList = 6E7549EB8EBFA40928D15B8D3B8F521A /* Build configuration list for PBXNativeTarget "Pods-LXDTimerManager_Example" */; 286 | buildPhases = ( 287 | B0706202AE36FA83CE8085C7537C24ED /* Sources */, 288 | DAF445970DB5B314B880F8574E4FEA71 /* Frameworks */, 289 | EEECB6061063A33BA10788DF93F597F0 /* Headers */, 290 | ); 291 | buildRules = ( 292 | ); 293 | dependencies = ( 294 | 22E64E11FB101FC6D551BAC7BBF63E0F /* PBXTargetDependency */, 295 | ); 296 | name = "Pods-LXDTimerManager_Example"; 297 | productName = "Pods-LXDTimerManager_Example"; 298 | productReference = 07FBE8334613C18D2AD00860C8A07B35 /* Pods_LXDTimerManager_Example.framework */; 299 | productType = "com.apple.product-type.framework"; 300 | }; 301 | 6BD1A23EE671BFB0A20B092838C71CF3 /* LXDTimerManager */ = { 302 | isa = PBXNativeTarget; 303 | buildConfigurationList = 75B2D0FD8E4D55769895473B8C980A3F /* Build configuration list for PBXNativeTarget "LXDTimerManager" */; 304 | buildPhases = ( 305 | 2F80C10A19BDF67A20DB95FE7CAE8A0C /* Sources */, 306 | FED30934075B1ADDAD8C02E3B596F246 /* Frameworks */, 307 | A93811A1EE22F9DD63CC02EC41DEBC5A /* Headers */, 308 | ); 309 | buildRules = ( 310 | ); 311 | dependencies = ( 312 | ); 313 | name = LXDTimerManager; 314 | productName = LXDTimerManager; 315 | productReference = A65AB7FBD74F585A1D04CB6F93B6AEC1 /* LXDTimerManager.framework */; 316 | productType = "com.apple.product-type.framework"; 317 | }; 318 | 8BDAE98CCAEA1ED2CA4B07021AE964C8 /* Pods-LXDTimerManager_Tests */ = { 319 | isa = PBXNativeTarget; 320 | buildConfigurationList = 4D28A3CBA25E29667E0CBE0D42C6EF5C /* Build configuration list for PBXNativeTarget "Pods-LXDTimerManager_Tests" */; 321 | buildPhases = ( 322 | 2D2C156B2FB9F97318BDF1CE52CB1675 /* Sources */, 323 | 0445C6D4E80075BB3066247D32D2BC6B /* Frameworks */, 324 | CEB8BAAABA66B1C80FDAAD3F33B5FC83 /* Headers */, 325 | ); 326 | buildRules = ( 327 | ); 328 | dependencies = ( 329 | ); 330 | name = "Pods-LXDTimerManager_Tests"; 331 | productName = "Pods-LXDTimerManager_Tests"; 332 | productReference = A8EF595379D4BE0A640424C5B6873FE7 /* Pods_LXDTimerManager_Tests.framework */; 333 | productType = "com.apple.product-type.framework"; 334 | }; 335 | /* End PBXNativeTarget section */ 336 | 337 | /* Begin PBXProject section */ 338 | D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { 339 | isa = PBXProject; 340 | attributes = { 341 | LastSwiftUpdateCheck = 0830; 342 | LastUpgradeCheck = 0700; 343 | }; 344 | buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; 345 | compatibilityVersion = "Xcode 3.2"; 346 | developmentRegion = English; 347 | hasScannedForEncodings = 0; 348 | knownRegions = ( 349 | en, 350 | ); 351 | mainGroup = 7DB346D0F39D3F0E887471402A8071AB; 352 | productRefGroup = C83AF0DBC3C8DC7979A1E57C19ED7023 /* Products */; 353 | projectDirPath = ""; 354 | projectRoot = ""; 355 | targets = ( 356 | 6BD1A23EE671BFB0A20B092838C71CF3 /* LXDTimerManager */, 357 | 1D6D2C743DE4C66DE2CE0E208A7E7402 /* Pods-LXDTimerManager_Example */, 358 | 8BDAE98CCAEA1ED2CA4B07021AE964C8 /* Pods-LXDTimerManager_Tests */, 359 | ); 360 | }; 361 | /* End PBXProject section */ 362 | 363 | /* Begin PBXSourcesBuildPhase section */ 364 | 2D2C156B2FB9F97318BDF1CE52CB1675 /* Sources */ = { 365 | isa = PBXSourcesBuildPhase; 366 | buildActionMask = 2147483647; 367 | files = ( 368 | 4F524709590C19A0CD5D380FC20483D2 /* Pods-LXDTimerManager_Tests-dummy.m in Sources */, 369 | ); 370 | runOnlyForDeploymentPostprocessing = 0; 371 | }; 372 | 2F80C10A19BDF67A20DB95FE7CAE8A0C /* Sources */ = { 373 | isa = PBXSourcesBuildPhase; 374 | buildActionMask = 2147483647; 375 | files = ( 376 | EF24E0AA2000687A003E94EA /* LXDBaseHashmap.h in Sources */, 377 | EF24E0AB2000687A003E94EA /* LXDBaseHashmap.mm in Sources */, 378 | EF24E0AC2000687A003E94EA /* LXDReceiverHashmap.h in Sources */, 379 | EF24E0AD2000687A003E94EA /* LXDReceiverHashmap.mm in Sources */, 380 | EF24E0A520006875003E94EA /* LXDTimerManager.mm in Sources */, 381 | EF24E0A620006875003E94EA /* LXDTimerManager.h in Sources */, 382 | EF24E0A720006875003E94EA /* NSObject+PerformTimer.h in Sources */, 383 | EF24E0A820006875003E94EA /* NSObject+PerformTimer.m in Sources */, 384 | EF24E0A920006875003E94EA /* LXDTimerStructure.h in Sources */, 385 | 01750DEC76F69485D2902B508845CAF7 /* LXDTimerManager-dummy.m in Sources */, 386 | ); 387 | runOnlyForDeploymentPostprocessing = 0; 388 | }; 389 | B0706202AE36FA83CE8085C7537C24ED /* Sources */ = { 390 | isa = PBXSourcesBuildPhase; 391 | buildActionMask = 2147483647; 392 | files = ( 393 | F3945A26C972464075A0703AAEADB02E /* Pods-LXDTimerManager_Example-dummy.m in Sources */, 394 | ); 395 | runOnlyForDeploymentPostprocessing = 0; 396 | }; 397 | /* End PBXSourcesBuildPhase section */ 398 | 399 | /* Begin PBXTargetDependency section */ 400 | 22E64E11FB101FC6D551BAC7BBF63E0F /* PBXTargetDependency */ = { 401 | isa = PBXTargetDependency; 402 | name = LXDTimerManager; 403 | target = 6BD1A23EE671BFB0A20B092838C71CF3 /* LXDTimerManager */; 404 | targetProxy = 1B70C10E2B992B55B82E5C731B5A27FC /* PBXContainerItemProxy */; 405 | }; 406 | /* End PBXTargetDependency section */ 407 | 408 | /* Begin XCBuildConfiguration section */ 409 | 21CA4B4C2FEDBE64E76BB87C642D46CD /* Debug */ = { 410 | isa = XCBuildConfiguration; 411 | baseConfigurationReference = 2A18EF9FC3D2541399ED62326A0073CF /* LXDTimerManager.xcconfig */; 412 | buildSettings = { 413 | CODE_SIGN_IDENTITY = ""; 414 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 415 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 416 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 417 | CURRENT_PROJECT_VERSION = 1; 418 | DEFINES_MODULE = YES; 419 | DYLIB_COMPATIBILITY_VERSION = 1; 420 | DYLIB_CURRENT_VERSION = 1; 421 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 422 | GCC_PREFIX_HEADER = "Target Support Files/LXDTimerManager/LXDTimerManager-prefix.pch"; 423 | INFOPLIST_FILE = "Target Support Files/LXDTimerManager/Info.plist"; 424 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 425 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 426 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 427 | MODULEMAP_FILE = "Target Support Files/LXDTimerManager/LXDTimerManager.modulemap"; 428 | PRODUCT_NAME = LXDTimerManager; 429 | SDKROOT = iphoneos; 430 | SKIP_INSTALL = YES; 431 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 432 | TARGETED_DEVICE_FAMILY = "1,2"; 433 | VERSIONING_SYSTEM = "apple-generic"; 434 | VERSION_INFO_PREFIX = ""; 435 | }; 436 | name = Debug; 437 | }; 438 | 33DA7F43A1D2FA3C74A8C8FC246E1FA6 /* Debug */ = { 439 | isa = XCBuildConfiguration; 440 | buildSettings = { 441 | ALWAYS_SEARCH_USER_PATHS = NO; 442 | CLANG_ANALYZER_NONNULL = YES; 443 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 444 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 445 | CLANG_CXX_LIBRARY = "libc++"; 446 | CLANG_ENABLE_MODULES = YES; 447 | CLANG_ENABLE_OBJC_ARC = YES; 448 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 449 | CLANG_WARN_BOOL_CONVERSION = YES; 450 | CLANG_WARN_COMMA = YES; 451 | CLANG_WARN_CONSTANT_CONVERSION = YES; 452 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 453 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 454 | CLANG_WARN_EMPTY_BODY = YES; 455 | CLANG_WARN_ENUM_CONVERSION = YES; 456 | CLANG_WARN_INFINITE_RECURSION = YES; 457 | CLANG_WARN_INT_CONVERSION = YES; 458 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 459 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 460 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 461 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 462 | CLANG_WARN_STRICT_PROTOTYPES = YES; 463 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 464 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 465 | CLANG_WARN_UNREACHABLE_CODE = YES; 466 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 467 | CODE_SIGNING_REQUIRED = NO; 468 | COPY_PHASE_STRIP = NO; 469 | DEBUG_INFORMATION_FORMAT = dwarf; 470 | ENABLE_STRICT_OBJC_MSGSEND = YES; 471 | ENABLE_TESTABILITY = YES; 472 | GCC_C_LANGUAGE_STANDARD = gnu11; 473 | GCC_DYNAMIC_NO_PIC = NO; 474 | GCC_NO_COMMON_BLOCKS = YES; 475 | GCC_OPTIMIZATION_LEVEL = 0; 476 | GCC_PREPROCESSOR_DEFINITIONS = ( 477 | "POD_CONFIGURATION_DEBUG=1", 478 | "DEBUG=1", 479 | "$(inherited)", 480 | ); 481 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 482 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 483 | GCC_WARN_UNDECLARED_SELECTOR = YES; 484 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 485 | GCC_WARN_UNUSED_FUNCTION = YES; 486 | GCC_WARN_UNUSED_VARIABLE = YES; 487 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 488 | MTL_ENABLE_DEBUG_INFO = YES; 489 | ONLY_ACTIVE_ARCH = YES; 490 | PRODUCT_NAME = "$(TARGET_NAME)"; 491 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 492 | STRIP_INSTALLED_PRODUCT = NO; 493 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 494 | SYMROOT = "${SRCROOT}/../build"; 495 | }; 496 | name = Debug; 497 | }; 498 | 5B108DE600D1856FDD0CC0A808A39128 /* Debug */ = { 499 | isa = XCBuildConfiguration; 500 | baseConfigurationReference = 5FFF50EB9BFDEBB85C024A6A82FAB947 /* Pods-LXDTimerManager_Tests.debug.xcconfig */; 501 | buildSettings = { 502 | CODE_SIGN_IDENTITY = ""; 503 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 504 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 505 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 506 | CURRENT_PROJECT_VERSION = 1; 507 | DEFINES_MODULE = YES; 508 | DYLIB_COMPATIBILITY_VERSION = 1; 509 | DYLIB_CURRENT_VERSION = 1; 510 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 511 | INFOPLIST_FILE = "Target Support Files/Pods-LXDTimerManager_Tests/Info.plist"; 512 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 513 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 514 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 515 | MACH_O_TYPE = staticlib; 516 | MODULEMAP_FILE = "Target Support Files/Pods-LXDTimerManager_Tests/Pods-LXDTimerManager_Tests.modulemap"; 517 | OTHER_LDFLAGS = ""; 518 | OTHER_LIBTOOLFLAGS = ""; 519 | PODS_ROOT = "$(SRCROOT)"; 520 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 521 | PRODUCT_NAME = Pods_LXDTimerManager_Tests; 522 | SDKROOT = iphoneos; 523 | SKIP_INSTALL = YES; 524 | TARGETED_DEVICE_FAMILY = "1,2"; 525 | VERSIONING_SYSTEM = "apple-generic"; 526 | VERSION_INFO_PREFIX = ""; 527 | }; 528 | name = Debug; 529 | }; 530 | 6F5A5D4779F3097D820A151F9B35EF8F /* Debug */ = { 531 | isa = XCBuildConfiguration; 532 | baseConfigurationReference = 9BC0772F4DE3D88C74616EE41C208890 /* Pods-LXDTimerManager_Example.debug.xcconfig */; 533 | buildSettings = { 534 | CODE_SIGN_IDENTITY = ""; 535 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 536 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 537 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 538 | CURRENT_PROJECT_VERSION = 1; 539 | DEFINES_MODULE = YES; 540 | DYLIB_COMPATIBILITY_VERSION = 1; 541 | DYLIB_CURRENT_VERSION = 1; 542 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 543 | INFOPLIST_FILE = "Target Support Files/Pods-LXDTimerManager_Example/Info.plist"; 544 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 545 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 546 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 547 | MACH_O_TYPE = staticlib; 548 | MODULEMAP_FILE = "Target Support Files/Pods-LXDTimerManager_Example/Pods-LXDTimerManager_Example.modulemap"; 549 | OTHER_LDFLAGS = ""; 550 | OTHER_LIBTOOLFLAGS = ""; 551 | PODS_ROOT = "$(SRCROOT)"; 552 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 553 | PRODUCT_NAME = Pods_LXDTimerManager_Example; 554 | SDKROOT = iphoneos; 555 | SKIP_INSTALL = YES; 556 | TARGETED_DEVICE_FAMILY = "1,2"; 557 | VERSIONING_SYSTEM = "apple-generic"; 558 | VERSION_INFO_PREFIX = ""; 559 | }; 560 | name = Debug; 561 | }; 562 | 70F7C31612ABE67B3C721F5DAE20C8E5 /* Release */ = { 563 | isa = XCBuildConfiguration; 564 | baseConfigurationReference = 2A18EF9FC3D2541399ED62326A0073CF /* LXDTimerManager.xcconfig */; 565 | buildSettings = { 566 | CODE_SIGN_IDENTITY = ""; 567 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 568 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 569 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 570 | CURRENT_PROJECT_VERSION = 1; 571 | DEFINES_MODULE = YES; 572 | DYLIB_COMPATIBILITY_VERSION = 1; 573 | DYLIB_CURRENT_VERSION = 1; 574 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 575 | GCC_PREFIX_HEADER = "Target Support Files/LXDTimerManager/LXDTimerManager-prefix.pch"; 576 | INFOPLIST_FILE = "Target Support Files/LXDTimerManager/Info.plist"; 577 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 578 | IPHONEOS_DEPLOYMENT_TARGET = 8.0; 579 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 580 | MODULEMAP_FILE = "Target Support Files/LXDTimerManager/LXDTimerManager.modulemap"; 581 | PRODUCT_NAME = LXDTimerManager; 582 | SDKROOT = iphoneos; 583 | SKIP_INSTALL = YES; 584 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 585 | TARGETED_DEVICE_FAMILY = "1,2"; 586 | VALIDATE_PRODUCT = YES; 587 | VERSIONING_SYSTEM = "apple-generic"; 588 | VERSION_INFO_PREFIX = ""; 589 | }; 590 | name = Release; 591 | }; 592 | 731DC216E1A58545B559F6E0A2418060 /* Release */ = { 593 | isa = XCBuildConfiguration; 594 | buildSettings = { 595 | ALWAYS_SEARCH_USER_PATHS = NO; 596 | CLANG_ANALYZER_NONNULL = YES; 597 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 598 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 599 | CLANG_CXX_LIBRARY = "libc++"; 600 | CLANG_ENABLE_MODULES = YES; 601 | CLANG_ENABLE_OBJC_ARC = YES; 602 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 603 | CLANG_WARN_BOOL_CONVERSION = YES; 604 | CLANG_WARN_COMMA = YES; 605 | CLANG_WARN_CONSTANT_CONVERSION = YES; 606 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 607 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 608 | CLANG_WARN_EMPTY_BODY = YES; 609 | CLANG_WARN_ENUM_CONVERSION = YES; 610 | CLANG_WARN_INFINITE_RECURSION = YES; 611 | CLANG_WARN_INT_CONVERSION = YES; 612 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 613 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 614 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 615 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 616 | CLANG_WARN_STRICT_PROTOTYPES = YES; 617 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 618 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 619 | CLANG_WARN_UNREACHABLE_CODE = YES; 620 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 621 | CODE_SIGNING_REQUIRED = NO; 622 | COPY_PHASE_STRIP = NO; 623 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 624 | ENABLE_NS_ASSERTIONS = NO; 625 | ENABLE_STRICT_OBJC_MSGSEND = YES; 626 | GCC_C_LANGUAGE_STANDARD = gnu11; 627 | GCC_NO_COMMON_BLOCKS = YES; 628 | GCC_PREPROCESSOR_DEFINITIONS = ( 629 | "POD_CONFIGURATION_RELEASE=1", 630 | "$(inherited)", 631 | ); 632 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 633 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 634 | GCC_WARN_UNDECLARED_SELECTOR = YES; 635 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 636 | GCC_WARN_UNUSED_FUNCTION = YES; 637 | GCC_WARN_UNUSED_VARIABLE = YES; 638 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 639 | MTL_ENABLE_DEBUG_INFO = NO; 640 | PRODUCT_NAME = "$(TARGET_NAME)"; 641 | PROVISIONING_PROFILE_SPECIFIER = NO_SIGNING/; 642 | STRIP_INSTALLED_PRODUCT = NO; 643 | SYMROOT = "${SRCROOT}/../build"; 644 | }; 645 | name = Release; 646 | }; 647 | C669F933BD798B3D1B9756C9B689A12B /* Release */ = { 648 | isa = XCBuildConfiguration; 649 | baseConfigurationReference = A27F75E12AF56AEB0540636F9C198630 /* Pods-LXDTimerManager_Tests.release.xcconfig */; 650 | buildSettings = { 651 | CODE_SIGN_IDENTITY = ""; 652 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 653 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 654 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 655 | CURRENT_PROJECT_VERSION = 1; 656 | DEFINES_MODULE = YES; 657 | DYLIB_COMPATIBILITY_VERSION = 1; 658 | DYLIB_CURRENT_VERSION = 1; 659 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 660 | INFOPLIST_FILE = "Target Support Files/Pods-LXDTimerManager_Tests/Info.plist"; 661 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 662 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 663 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 664 | MACH_O_TYPE = staticlib; 665 | MODULEMAP_FILE = "Target Support Files/Pods-LXDTimerManager_Tests/Pods-LXDTimerManager_Tests.modulemap"; 666 | OTHER_LDFLAGS = ""; 667 | OTHER_LIBTOOLFLAGS = ""; 668 | PODS_ROOT = "$(SRCROOT)"; 669 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 670 | PRODUCT_NAME = Pods_LXDTimerManager_Tests; 671 | SDKROOT = iphoneos; 672 | SKIP_INSTALL = YES; 673 | TARGETED_DEVICE_FAMILY = "1,2"; 674 | VALIDATE_PRODUCT = YES; 675 | VERSIONING_SYSTEM = "apple-generic"; 676 | VERSION_INFO_PREFIX = ""; 677 | }; 678 | name = Release; 679 | }; 680 | DA9CDC9FD1B4D08B51D8335742996A79 /* Release */ = { 681 | isa = XCBuildConfiguration; 682 | baseConfigurationReference = F4A6C489A5FCDEF42A8EE28B5EED91D7 /* Pods-LXDTimerManager_Example.release.xcconfig */; 683 | buildSettings = { 684 | CODE_SIGN_IDENTITY = ""; 685 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 686 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 687 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 688 | CURRENT_PROJECT_VERSION = 1; 689 | DEFINES_MODULE = YES; 690 | DYLIB_COMPATIBILITY_VERSION = 1; 691 | DYLIB_CURRENT_VERSION = 1; 692 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 693 | INFOPLIST_FILE = "Target Support Files/Pods-LXDTimerManager_Example/Info.plist"; 694 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 695 | IPHONEOS_DEPLOYMENT_TARGET = 9.3; 696 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 697 | MACH_O_TYPE = staticlib; 698 | MODULEMAP_FILE = "Target Support Files/Pods-LXDTimerManager_Example/Pods-LXDTimerManager_Example.modulemap"; 699 | OTHER_LDFLAGS = ""; 700 | OTHER_LIBTOOLFLAGS = ""; 701 | PODS_ROOT = "$(SRCROOT)"; 702 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 703 | PRODUCT_NAME = Pods_LXDTimerManager_Example; 704 | SDKROOT = iphoneos; 705 | SKIP_INSTALL = YES; 706 | TARGETED_DEVICE_FAMILY = "1,2"; 707 | VALIDATE_PRODUCT = YES; 708 | VERSIONING_SYSTEM = "apple-generic"; 709 | VERSION_INFO_PREFIX = ""; 710 | }; 711 | name = Release; 712 | }; 713 | /* End XCBuildConfiguration section */ 714 | 715 | /* Begin XCConfigurationList section */ 716 | 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { 717 | isa = XCConfigurationList; 718 | buildConfigurations = ( 719 | 33DA7F43A1D2FA3C74A8C8FC246E1FA6 /* Debug */, 720 | 731DC216E1A58545B559F6E0A2418060 /* Release */, 721 | ); 722 | defaultConfigurationIsVisible = 0; 723 | defaultConfigurationName = Release; 724 | }; 725 | 4D28A3CBA25E29667E0CBE0D42C6EF5C /* Build configuration list for PBXNativeTarget "Pods-LXDTimerManager_Tests" */ = { 726 | isa = XCConfigurationList; 727 | buildConfigurations = ( 728 | 5B108DE600D1856FDD0CC0A808A39128 /* Debug */, 729 | C669F933BD798B3D1B9756C9B689A12B /* Release */, 730 | ); 731 | defaultConfigurationIsVisible = 0; 732 | defaultConfigurationName = Release; 733 | }; 734 | 6E7549EB8EBFA40928D15B8D3B8F521A /* Build configuration list for PBXNativeTarget "Pods-LXDTimerManager_Example" */ = { 735 | isa = XCConfigurationList; 736 | buildConfigurations = ( 737 | 6F5A5D4779F3097D820A151F9B35EF8F /* Debug */, 738 | DA9CDC9FD1B4D08B51D8335742996A79 /* Release */, 739 | ); 740 | defaultConfigurationIsVisible = 0; 741 | defaultConfigurationName = Release; 742 | }; 743 | 75B2D0FD8E4D55769895473B8C980A3F /* Build configuration list for PBXNativeTarget "LXDTimerManager" */ = { 744 | isa = XCConfigurationList; 745 | buildConfigurations = ( 746 | 21CA4B4C2FEDBE64E76BB87C642D46CD /* Debug */, 747 | 70F7C31612ABE67B3C721F5DAE20C8E5 /* Release */, 748 | ); 749 | defaultConfigurationIsVisible = 0; 750 | defaultConfigurationName = Release; 751 | }; 752 | /* End XCConfigurationList section */ 753 | }; 754 | rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; 755 | } 756 | --------------------------------------------------------------------------------