├── .gitignore ├── .travis.yml ├── Example ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ ├── Private │ │ │ └── RKColorSlider │ │ │ │ └── RKColorSlider.h │ │ └── Public │ │ │ └── RKColorSlider │ │ │ └── RKColorSlider.h │ ├── Local Podspecs │ │ └── RKColorSlider.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-RKColorSlider-RKColorSlider │ │ ├── Pods-RKColorSlider-RKColorSlider-Private.xcconfig │ │ ├── Pods-RKColorSlider-RKColorSlider-dummy.m │ │ ├── Pods-RKColorSlider-RKColorSlider-prefix.pch │ │ └── Pods-RKColorSlider-RKColorSlider.xcconfig │ │ ├── Pods-RKColorSlider │ │ ├── Pods-RKColorSlider-acknowledgements.markdown │ │ ├── Pods-RKColorSlider-acknowledgements.plist │ │ ├── Pods-RKColorSlider-dummy.m │ │ ├── Pods-RKColorSlider-environment.h │ │ ├── Pods-RKColorSlider-resources.sh │ │ ├── Pods-RKColorSlider.debug.xcconfig │ │ └── Pods-RKColorSlider.release.xcconfig │ │ ├── Pods-Tests-RKColorSlider │ │ ├── Pods-Tests-RKColorSlider-Private.xcconfig │ │ ├── Pods-Tests-RKColorSlider-dummy.m │ │ ├── Pods-Tests-RKColorSlider-prefix.pch │ │ └── Pods-Tests-RKColorSlider.xcconfig │ │ └── Pods-Tests │ │ ├── Pods-Tests-acknowledgements.markdown │ │ ├── Pods-Tests-acknowledgements.plist │ │ ├── Pods-Tests-dummy.m │ │ ├── Pods-Tests-environment.h │ │ ├── Pods-Tests-resources.sh │ │ ├── Pods-Tests.debug.xcconfig │ │ └── Pods-Tests.release.xcconfig ├── RKColorSlider.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── RKColorSlider-Example.xcscheme ├── RKColorSlider.xcworkspace │ └── contents.xcworkspacedata ├── RKColorSlider │ ├── Base.lproj │ │ ├── Main_iPad.storyboard │ │ └── Main_iPhone.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── RKAppDelegate.h │ ├── RKAppDelegate.m │ ├── RKColorSlider-Info.plist │ ├── RKColorSlider-Prefix.pch │ ├── RKViewController.h │ ├── RKViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── Pod ├── Assets │ ├── .gitkeep │ └── slider@2x.png └── Classes │ ├── .gitkeep │ ├── RKColorSlider.h │ └── RKColorSlider.m ├── README.md └── RKColorSlider.podspec /.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 | # We recommend against adding the Pods directory to your .gitignore. However 26 | # you should judge for yourself, the pros and cons are mentioned at: 27 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 28 | # 29 | # Note: if you ignore the Pods directory, make sure to uncomment 30 | # `pod install` in .travis.yml 31 | # 32 | # Pods/ 33 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * http://www.objc.io/issue-6/travis-ci.html 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | language: objective-c 6 | # cache: cocoapods 7 | # podfile: Example/Podfile 8 | # before_install: 9 | # - gem install cocoapods # Since Travis is not always on latest version 10 | # - pod install --project-directory=Example 11 | install: 12 | - gem install xcpretty --no-rdoc --no-ri --no-document --quiet 13 | script: 14 | - set -o pipefail && xcodebuild test -workspace Example/RKColorSlider.xcworkspace -scheme RKColorSlider-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty -c 15 | - pod lib lint --quick 16 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | source 'https://github.com/CocoaPods/Specs.git' 2 | 3 | target 'RKColorSlider', :exclusive => true do 4 | pod "RKColorSlider", :path => "../" 5 | end 6 | 7 | target 'Tests', :exclusive => true do 8 | pod "RKColorSlider", :path => "../" 9 | 10 | 11 | end 12 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - RKColorSlider (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - RKColorSlider (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | RKColorSlider: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | RKColorSlider: 648e2d27b72e191baa6f98169ce6c19dabc28731 13 | 14 | COCOAPODS: 0.36.0.beta.1 15 | -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/RKColorSlider/RKColorSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/RKColorSlider.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/RKColorSlider/RKColorSlider.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/RKColorSlider.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/RKColorSlider.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "RKColorSlider", 3 | "version": "0.1.0", 4 | "summary": "A short description of RKColorSlider.", 5 | "description": " An optional longer description of RKColorSlider\n\n * Markdown format.\n * Don't worry about the indent, we strip it!\n", 6 | "homepage": "https://github.com//RKColorSlider", 7 | "license": "MIT", 8 | "authors": { 9 | "rich86man": "richardbkirk@gmail.com" 10 | }, 11 | "source": { 12 | "git": "https://github.com//RKColorSlider.git", 13 | "tag": "0.1.0" 14 | }, 15 | "platforms": { 16 | "ios": "7.0" 17 | }, 18 | "requires_arc": true, 19 | "source_files": "Pod/Classes", 20 | "resource_bundles": { 21 | "RKColorSlider": [ 22 | "Pod/Assets/*.png" 23 | ] 24 | }, 25 | "public_header_files": "Pod/Classes/RKColorSlider.h" 26 | } 27 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - RKColorSlider (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - RKColorSlider (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | RKColorSlider: 9 | :path: ../ 10 | 11 | SPEC CHECKSUMS: 12 | RKColorSlider: 648e2d27b72e191baa6f98169ce6c19dabc28731 13 | 14 | COCOAPODS: 0.36.0.beta.1 15 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | archiveVersion 6 | 1 7 | classes 8 | 9 | objectVersion 10 | 46 11 | objects 12 | 13 | 001B5AEE7C8F02600786F884 14 | 15 | children 16 | 17 | 248912C852790CD2C2725904 18 | 19 | isa 20 | PBXGroup 21 | name 22 | Frameworks 23 | sourceTree 24 | <group> 25 | 26 | 01D7B2056A99DAF88813A352 27 | 28 | buildActionMask 29 | 2147483647 30 | files 31 | 32 | 7564F896BF850DF6273B8AB0 33 | 34 | isa 35 | PBXFrameworksBuildPhase 36 | runOnlyForDeploymentPostprocessing 37 | 0 38 | 39 | 029936939743C1D829198A8A 40 | 41 | includeInIndex 42 | 1 43 | isa 44 | PBXFileReference 45 | lastKnownFileType 46 | text.xcconfig 47 | name 48 | Pods-Tests-RKColorSlider-Private.xcconfig 49 | path 50 | ../Pods-Tests-RKColorSlider/Pods-Tests-RKColorSlider-Private.xcconfig 51 | sourceTree 52 | <group> 53 | 54 | 03FF6DB6E56AC6B4EA80F8E2 55 | 56 | baseConfigurationReference 57 | D58E28931ED6B9F356FCB8E1 58 | buildSettings 59 | 60 | ENABLE_STRICT_OBJC_MSGSEND 61 | YES 62 | IPHONEOS_DEPLOYMENT_TARGET 63 | 7.1 64 | MTL_ENABLE_DEBUG_INFO 65 | YES 66 | OTHER_LDFLAGS 67 | 68 | OTHER_LIBTOOLFLAGS 69 | 70 | PODS_ROOT 71 | $(SRCROOT) 72 | PRODUCT_NAME 73 | $(TARGET_NAME) 74 | SDKROOT 75 | iphoneos 76 | SKIP_INSTALL 77 | YES 78 | 79 | isa 80 | XCBuildConfiguration 81 | name 82 | Debug 83 | 84 | 042847804442C773B56E1EEB 85 | 86 | includeInIndex 87 | 1 88 | isa 89 | PBXFileReference 90 | lastKnownFileType 91 | text.plist.xml 92 | path 93 | Pods-RKColorSlider-acknowledgements.plist 94 | sourceTree 95 | <group> 96 | 97 | 06061FCEB30B4F4A24B0C53C 98 | 99 | explicitFileType 100 | wrapper.cfbundle 101 | includeInIndex 102 | 0 103 | isa 104 | PBXFileReference 105 | name 106 | RKColorSlider.bundle 107 | path 108 | RKColorSlider.bundle 109 | sourceTree 110 | BUILT_PRODUCTS_DIR 111 | 112 | 0A350763509F0A3D0BDB5F76 113 | 114 | explicitFileType 115 | archive.ar 116 | includeInIndex 117 | 0 118 | isa 119 | PBXFileReference 120 | name 121 | libPods-Tests.a 122 | path 123 | libPods-Tests.a 124 | sourceTree 125 | BUILT_PRODUCTS_DIR 126 | 127 | 0C86198F1A62D398CCF841E0 128 | 129 | baseConfigurationReference 130 | 62DAA650C6A90E2A20853296 131 | buildSettings 132 | 133 | ENABLE_STRICT_OBJC_MSGSEND 134 | YES 135 | GCC_PREFIX_HEADER 136 | Target Support Files/Pods-RKColorSlider-RKColorSlider/Pods-RKColorSlider-RKColorSlider-prefix.pch 137 | IPHONEOS_DEPLOYMENT_TARGET 138 | 7.1 139 | MTL_ENABLE_DEBUG_INFO 140 | NO 141 | OTHER_LDFLAGS 142 | 143 | OTHER_LIBTOOLFLAGS 144 | 145 | PRODUCT_NAME 146 | $(TARGET_NAME) 147 | SDKROOT 148 | iphoneos 149 | SKIP_INSTALL 150 | YES 151 | 152 | isa 153 | XCBuildConfiguration 154 | name 155 | Release 156 | 157 | 109A4F414E27D2CA5D9E9F0E 158 | 159 | buildActionMask 160 | 2147483647 161 | files 162 | 163 | 9DDA5E97F38C3E0D7EC3252E 164 | 165 | isa 166 | PBXResourcesBuildPhase 167 | runOnlyForDeploymentPostprocessing 168 | 0 169 | 170 | 11BA0DF07D231243CAC7D0BB 171 | 172 | fileRef 173 | 1E7C14C65EF4A7E0E20A4CB7 174 | isa 175 | PBXBuildFile 176 | 177 | 147C76162FA7D20449CD8CEE 178 | 179 | fileRef 180 | 9FA881C605CBCD96D54E2A44 181 | isa 182 | PBXBuildFile 183 | 184 | 1773DA5CD850217B6DF0739A 185 | 186 | isa 187 | PBXTargetDependency 188 | name 189 | Pods-Tests-RKColorSlider 190 | target 191 | 34879AAA6C8B3B168BADB633 192 | targetProxy 193 | C0C03E872D915F859017540B 194 | 195 | 1882B4D9EE108B98F6F7D27E 196 | 197 | explicitFileType 198 | wrapper.cfbundle 199 | includeInIndex 200 | 0 201 | isa 202 | PBXFileReference 203 | name 204 | RKColorSlider.bundle 205 | path 206 | RKColorSlider.bundle 207 | sourceTree 208 | BUILT_PRODUCTS_DIR 209 | 210 | 19BFBCB88749D3D5BD291A8E 211 | 212 | buildActionMask 213 | 2147483647 214 | files 215 | 216 | isa 217 | PBXSourcesBuildPhase 218 | runOnlyForDeploymentPostprocessing 219 | 0 220 | 221 | 1AED3921D89A30DCCBAE6C1B 222 | 223 | children 224 | 225 | 2B95610E4DCF132306700B29 226 | 27BD5BA3C1E3ADC70F5761D3 227 | 001B5AEE7C8F02600786F884 228 | 66C9B572C6C34C2C8DC0B142 229 | FAB19343EA388C95A5CD4AF6 230 | 231 | isa 232 | PBXGroup 233 | sourceTree 234 | <group> 235 | 236 | 1C87D389C4DFFD22C695D3AD 237 | 238 | children 239 | 240 | 9FF30A8FE2053BBEBB03EAE0 241 | 62DAA650C6A90E2A20853296 242 | 8BAE8871BC3C5844953E9A18 243 | F3D16E4F5766A68E0002BE5A 244 | 2BB39523568894D33E68A318 245 | 029936939743C1D829198A8A 246 | A8DE1D229594FF1460CDBC61 247 | 958A2171F8BEB5FB1442CC0B 248 | 249 | isa 250 | PBXGroup 251 | name 252 | Support Files 253 | path 254 | Example/Pods/Target Support Files/Pods-RKColorSlider-RKColorSlider 255 | sourceTree 256 | <group> 257 | 258 | 1D7290693D15BE8AC1FB5C63 259 | 260 | fileRef 261 | CC363E1C54A036499E1C4B69 262 | isa 263 | PBXBuildFile 264 | 265 | 1E50B51D03C8D476A37597F4 266 | 267 | fileRef 268 | 9F2B25D82EF4D30317948975 269 | isa 270 | PBXBuildFile 271 | 272 | 1E5717B1EEB67663A15A4C75 273 | 274 | buildConfigurations 275 | 276 | 03FF6DB6E56AC6B4EA80F8E2 277 | EA164C0E8EDCCCFF90E04581 278 | 279 | defaultConfigurationIsVisible 280 | 0 281 | defaultConfigurationName 282 | Release 283 | isa 284 | XCConfigurationList 285 | 286 | 1E7C14C65EF4A7E0E20A4CB7 287 | 288 | includeInIndex 289 | 1 290 | isa 291 | PBXFileReference 292 | path 293 | slider@2x.png 294 | sourceTree 295 | <group> 296 | 297 | 2466BB0008B09080F9D58097 298 | 299 | fileRef 300 | A8DE1D229594FF1460CDBC61 301 | isa 302 | PBXBuildFile 303 | 304 | 248912C852790CD2C2725904 305 | 306 | children 307 | 308 | CC363E1C54A036499E1C4B69 309 | 310 | isa 311 | PBXGroup 312 | name 313 | iOS 314 | sourceTree 315 | <group> 316 | 317 | 268CF0A3FBDA870B3FD30D71 318 | 319 | buildActionMask 320 | 2147483647 321 | files 322 | 323 | 9226F95562091F34CB297E4F 324 | 325 | isa 326 | PBXHeadersBuildPhase 327 | runOnlyForDeploymentPostprocessing 328 | 0 329 | 330 | 27BD5BA3C1E3ADC70F5761D3 331 | 332 | children 333 | 334 | 2A50C8BF78DC92A4AF100AF1 335 | 336 | isa 337 | PBXGroup 338 | name 339 | Development Pods 340 | sourceTree 341 | <group> 342 | 343 | 2A50C8BF78DC92A4AF100AF1 344 | 345 | children 346 | 347 | 48FEFBEDF80F023C8F9BA104 348 | 363C8F20E551B5925E0A5416 349 | 1C87D389C4DFFD22C695D3AD 350 | 351 | isa 352 | PBXGroup 353 | name 354 | RKColorSlider 355 | path 356 | ../.. 357 | sourceTree 358 | <group> 359 | 360 | 2AB0C35EA75A604D4CA0E64A 361 | 362 | isa 363 | PBXTargetDependency 364 | name 365 | Pods-RKColorSlider-RKColorSlider-RKColorSlider 366 | target 367 | B0A55EF147B299CAB0E9CA76 368 | targetProxy 369 | 6FE68FE3FFB612412912F15F 370 | 371 | 2B95610E4DCF132306700B29 372 | 373 | includeInIndex 374 | 1 375 | isa 376 | PBXFileReference 377 | lastKnownFileType 378 | text 379 | name 380 | Podfile 381 | path 382 | ../Podfile 383 | sourceTree 384 | SOURCE_ROOT 385 | xcLanguageSpecificationIdentifier 386 | xcode.lang.ruby 387 | 388 | 2BB39523568894D33E68A318 389 | 390 | includeInIndex 391 | 1 392 | isa 393 | PBXFileReference 394 | lastKnownFileType 395 | text.xcconfig 396 | name 397 | Pods-Tests-RKColorSlider.xcconfig 398 | path 399 | ../Pods-Tests-RKColorSlider/Pods-Tests-RKColorSlider.xcconfig 400 | sourceTree 401 | <group> 402 | 403 | 2CCC47F440FD8116DE4E5654 404 | 405 | fileRef 406 | ED0F9C3C0F5BE84F84B62E6B 407 | isa 408 | PBXBuildFile 409 | 410 | 2CE037BEE6B1D7ABA07A03DD 411 | 412 | buildSettings 413 | 414 | ALWAYS_SEARCH_USER_PATHS 415 | NO 416 | CLANG_CXX_LANGUAGE_STANDARD 417 | gnu++0x 418 | CLANG_CXX_LIBRARY 419 | libc++ 420 | CLANG_ENABLE_MODULES 421 | YES 422 | CLANG_ENABLE_OBJC_ARC 423 | YES 424 | CLANG_WARN_BOOL_CONVERSION 425 | YES 426 | CLANG_WARN_CONSTANT_CONVERSION 427 | YES 428 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE 429 | YES 430 | CLANG_WARN_EMPTY_BODY 431 | YES 432 | CLANG_WARN_ENUM_CONVERSION 433 | YES 434 | CLANG_WARN_INT_CONVERSION 435 | YES 436 | CLANG_WARN_OBJC_ROOT_CLASS 437 | YES 438 | CLANG_WARN_UNREACHABLE_CODE 439 | YES 440 | CLANG_WARN__DUPLICATE_METHOD_MATCH 441 | YES 442 | COPY_PHASE_STRIP 443 | YES 444 | GCC_C_LANGUAGE_STANDARD 445 | gnu99 446 | GCC_DYNAMIC_NO_PIC 447 | NO 448 | GCC_OPTIMIZATION_LEVEL 449 | 0 450 | GCC_PREPROCESSOR_DEFINITIONS 451 | 452 | DEBUG=1 453 | $(inherited) 454 | 455 | GCC_SYMBOLS_PRIVATE_EXTERN 456 | NO 457 | GCC_WARN_64_TO_32_BIT_CONVERSION 458 | YES 459 | GCC_WARN_ABOUT_RETURN_TYPE 460 | YES 461 | GCC_WARN_UNDECLARED_SELECTOR 462 | YES 463 | GCC_WARN_UNINITIALIZED_AUTOS 464 | YES 465 | GCC_WARN_UNUSED_FUNCTION 466 | YES 467 | GCC_WARN_UNUSED_VARIABLE 468 | YES 469 | IPHONEOS_DEPLOYMENT_TARGET 470 | 7.1 471 | ONLY_ACTIVE_ARCH 472 | YES 473 | STRIP_INSTALLED_PRODUCT 474 | NO 475 | 476 | isa 477 | XCBuildConfiguration 478 | name 479 | Debug 480 | 481 | 2F9B4B022945441BE6F248DA 482 | 483 | baseConfigurationReference 484 | 7934DC5B82E1BBDBC30BDEAC 485 | buildSettings 486 | 487 | ENABLE_STRICT_OBJC_MSGSEND 488 | YES 489 | IPHONEOS_DEPLOYMENT_TARGET 490 | 7.1 491 | MTL_ENABLE_DEBUG_INFO 492 | NO 493 | OTHER_LDFLAGS 494 | 495 | OTHER_LIBTOOLFLAGS 496 | 497 | PODS_ROOT 498 | $(SRCROOT) 499 | PRODUCT_NAME 500 | $(TARGET_NAME) 501 | SDKROOT 502 | iphoneos 503 | SKIP_INSTALL 504 | YES 505 | 506 | isa 507 | XCBuildConfiguration 508 | name 509 | Release 510 | 511 | 31BE5520519C8210299BD54B 512 | 513 | baseConfigurationReference 514 | 029936939743C1D829198A8A 515 | buildSettings 516 | 517 | ENABLE_STRICT_OBJC_MSGSEND 518 | YES 519 | GCC_PREFIX_HEADER 520 | Target Support Files/Pods-Tests-RKColorSlider/Pods-Tests-RKColorSlider-prefix.pch 521 | IPHONEOS_DEPLOYMENT_TARGET 522 | 7.1 523 | MTL_ENABLE_DEBUG_INFO 524 | YES 525 | OTHER_LDFLAGS 526 | 527 | OTHER_LIBTOOLFLAGS 528 | 529 | PRODUCT_NAME 530 | $(TARGET_NAME) 531 | SDKROOT 532 | iphoneos 533 | SKIP_INSTALL 534 | YES 535 | 536 | isa 537 | XCBuildConfiguration 538 | name 539 | Debug 540 | 541 | 34879AAA6C8B3B168BADB633 542 | 543 | buildConfigurationList 544 | 74AAC0AC377E12707DCB8D3D 545 | buildPhases 546 | 547 | BEB89AFF7A06168EAA014985 548 | AAA7E5BA9B45697BC823175A 549 | 268CF0A3FBDA870B3FD30D71 550 | 551 | buildRules 552 | 553 | dependencies 554 | 555 | 3B4A35D8F394A367475BE758 556 | 557 | isa 558 | PBXNativeTarget 559 | name 560 | Pods-Tests-RKColorSlider 561 | productName 562 | Pods-Tests-RKColorSlider 563 | productReference 564 | 4A22E489B6D1195D7752A7AE 565 | productType 566 | com.apple.product-type.library.static 567 | 568 | 363C8F20E551B5925E0A5416 569 | 570 | children 571 | 572 | 4E7789A86D1446C1481C889B 573 | 574 | isa 575 | PBXGroup 576 | name 577 | Resources 578 | sourceTree 579 | <group> 580 | 581 | 3795BDCAF9F929CE3C871D40 582 | 583 | buildActionMask 584 | 2147483647 585 | files 586 | 587 | 837924F422E7082DEAD0FF7B 588 | 483F13A61976C88915202010 589 | 590 | isa 591 | PBXSourcesBuildPhase 592 | runOnlyForDeploymentPostprocessing 593 | 0 594 | 595 | 3B4A35D8F394A367475BE758 596 | 597 | isa 598 | PBXTargetDependency 599 | name 600 | Pods-Tests-RKColorSlider-RKColorSlider 601 | target 602 | 619A4C2CE950EDC6BCA3C3B0 603 | targetProxy 604 | 830847E78FEFE062777BA189 605 | 606 | 4009B1C1A1791B7323CFE4B0 607 | 608 | attributes 609 | 610 | LastUpgradeCheck 611 | 0510 612 | 613 | buildConfigurationList 614 | C79EA91299DB06B90A864735 615 | compatibilityVersion 616 | Xcode 3.2 617 | developmentRegion 618 | English 619 | hasScannedForEncodings 620 | 0 621 | isa 622 | PBXProject 623 | knownRegions 624 | 625 | en 626 | 627 | mainGroup 628 | 1AED3921D89A30DCCBAE6C1B 629 | productRefGroup 630 | 66C9B572C6C34C2C8DC0B142 631 | projectDirPath 632 | 633 | projectReferences 634 | 635 | projectRoot 636 | 637 | targets 638 | 639 | 6DB491DB417FD9B33310C99F 640 | AD18ACF432900B0978A2B945 641 | B0A55EF147B299CAB0E9CA76 642 | F17166038A7EB27C5730121C 643 | 34879AAA6C8B3B168BADB633 644 | 619A4C2CE950EDC6BCA3C3B0 645 | 646 | 647 | 47302A7B30BAA5721561CE47 648 | 649 | buildActionMask 650 | 2147483647 651 | files 652 | 653 | 147C76162FA7D20449CD8CEE 654 | 655 | isa 656 | PBXSourcesBuildPhase 657 | runOnlyForDeploymentPostprocessing 658 | 0 659 | 660 | 483F13A61976C88915202010 661 | 662 | fileRef 663 | 7693C6290AC0F0E7F0C53A6C 664 | isa 665 | PBXBuildFile 666 | 667 | 48D8CCCCE4DF97E2FD2A5617 668 | 669 | buildConfigurations 670 | 671 | D9E21951BDB24CCC609ED000 672 | 8DF18950B093F4D96D986EAF 673 | 674 | defaultConfigurationIsVisible 675 | 0 676 | defaultConfigurationName 677 | Release 678 | isa 679 | XCConfigurationList 680 | 681 | 48FEFBEDF80F023C8F9BA104 682 | 683 | children 684 | 685 | F81301A895CE319F0813E972 686 | 687 | isa 688 | PBXGroup 689 | name 690 | Pod 691 | path 692 | Pod 693 | sourceTree 694 | <group> 695 | 696 | 4A22E489B6D1195D7752A7AE 697 | 698 | explicitFileType 699 | archive.ar 700 | includeInIndex 701 | 0 702 | isa 703 | PBXFileReference 704 | name 705 | libPods-Tests-RKColorSlider.a 706 | path 707 | libPods-Tests-RKColorSlider.a 708 | sourceTree 709 | BUILT_PRODUCTS_DIR 710 | 711 | 4C7B6EC172DD233301786F8D 712 | 713 | includeInIndex 714 | 1 715 | isa 716 | PBXFileReference 717 | lastKnownFileType 718 | text 719 | path 720 | Pods-Tests-acknowledgements.markdown 721 | sourceTree 722 | <group> 723 | 724 | 4E7789A86D1446C1481C889B 725 | 726 | children 727 | 728 | C2107992DDBA6D019559835E 729 | 730 | isa 731 | PBXGroup 732 | name 733 | Pod 734 | path 735 | Pod 736 | sourceTree 737 | <group> 738 | 739 | 50DD870EBDB2C6AFD47B8716 740 | 741 | buildConfigurations 742 | 743 | 6630587DC51B974A52461E6A 744 | 807AFBF6BC31695FB645F0DA 745 | 746 | defaultConfigurationIsVisible 747 | 0 748 | defaultConfigurationName 749 | Release 750 | isa 751 | XCConfigurationList 752 | 753 | 58DF4DACB2457EF3463FED3F 754 | 755 | buildConfigurations 756 | 757 | 71E3868A75876625150F906D 758 | 2F9B4B022945441BE6F248DA 759 | 760 | defaultConfigurationIsVisible 761 | 0 762 | defaultConfigurationName 763 | Release 764 | isa 765 | XCConfigurationList 766 | 767 | 6130524343BD62D16DFA42B8 768 | 769 | includeInIndex 770 | 1 771 | isa 772 | PBXFileReference 773 | lastKnownFileType 774 | sourcecode.c.h 775 | path 776 | Pods-RKColorSlider-environment.h 777 | sourceTree 778 | <group> 779 | 780 | 619A4C2CE950EDC6BCA3C3B0 781 | 782 | buildConfigurationList 783 | 48D8CCCCE4DF97E2FD2A5617 784 | buildPhases 785 | 786 | 19BFBCB88749D3D5BD291A8E 787 | B64378B770E7F4A1C53A2DBE 788 | 109A4F414E27D2CA5D9E9F0E 789 | 790 | buildRules 791 | 792 | dependencies 793 | 794 | isa 795 | PBXNativeTarget 796 | name 797 | Pods-Tests-RKColorSlider-RKColorSlider 798 | productName 799 | Pods-Tests-RKColorSlider-RKColorSlider 800 | productReference 801 | 06061FCEB30B4F4A24B0C53C 802 | productType 803 | com.apple.product-type.bundle 804 | 805 | 62DAA650C6A90E2A20853296 806 | 807 | includeInIndex 808 | 1 809 | isa 810 | PBXFileReference 811 | lastKnownFileType 812 | text.xcconfig 813 | path 814 | Pods-RKColorSlider-RKColorSlider-Private.xcconfig 815 | sourceTree 816 | <group> 817 | 818 | 6630587DC51B974A52461E6A 819 | 820 | buildSettings 821 | 822 | ENABLE_STRICT_OBJC_MSGSEND 823 | YES 824 | PRODUCT_NAME 825 | RKColorSlider 826 | SDKROOT 827 | iphoneos 828 | SKIP_INSTALL 829 | YES 830 | WRAPPER_EXTENSION 831 | bundle 832 | 833 | isa 834 | XCBuildConfiguration 835 | name 836 | Debug 837 | 838 | 66C9B572C6C34C2C8DC0B142 839 | 840 | children 841 | 842 | 06061FCEB30B4F4A24B0C53C 843 | 1882B4D9EE108B98F6F7D27E 844 | 7353AA943830E62A82DBC0D3 845 | A1DB5D96592B53F0E7CF210E 846 | 0A350763509F0A3D0BDB5F76 847 | 4A22E489B6D1195D7752A7AE 848 | 849 | isa 850 | PBXGroup 851 | name 852 | Products 853 | sourceTree 854 | <group> 855 | 856 | 670611F67CDDA32C1184859B 857 | 858 | buildActionMask 859 | 2147483647 860 | files 861 | 862 | 2CCC47F440FD8116DE4E5654 863 | 864 | isa 865 | PBXSourcesBuildPhase 866 | runOnlyForDeploymentPostprocessing 867 | 0 868 | 869 | 6C98F2717B5020522C7677A7 870 | 871 | buildActionMask 872 | 2147483647 873 | files 874 | 875 | DC91D1FB52123FD5BC740EDE 876 | 877 | isa 878 | PBXFrameworksBuildPhase 879 | runOnlyForDeploymentPostprocessing 880 | 0 881 | 882 | 6DB491DB417FD9B33310C99F 883 | 884 | buildConfigurationList 885 | 58DF4DACB2457EF3463FED3F 886 | buildPhases 887 | 888 | 47302A7B30BAA5721561CE47 889 | EF14A8109A25084A9718778C 890 | 891 | buildRules 892 | 893 | dependencies 894 | 895 | A5D420307EA405E140E6B345 896 | 897 | isa 898 | PBXNativeTarget 899 | name 900 | Pods-RKColorSlider 901 | productName 902 | Pods-RKColorSlider 903 | productReference 904 | 7353AA943830E62A82DBC0D3 905 | productType 906 | com.apple.product-type.library.static 907 | 908 | 6FE68FE3FFB612412912F15F 909 | 910 | containerPortal 911 | 4009B1C1A1791B7323CFE4B0 912 | isa 913 | PBXContainerItemProxy 914 | proxyType 915 | 1 916 | remoteGlobalIDString 917 | B0A55EF147B299CAB0E9CA76 918 | remoteInfo 919 | Pods-RKColorSlider-RKColorSlider-RKColorSlider 920 | 921 | 71E3868A75876625150F906D 922 | 923 | baseConfigurationReference 924 | F4B757670C7FBA7CD47C39CC 925 | buildSettings 926 | 927 | ENABLE_STRICT_OBJC_MSGSEND 928 | YES 929 | IPHONEOS_DEPLOYMENT_TARGET 930 | 7.1 931 | MTL_ENABLE_DEBUG_INFO 932 | YES 933 | OTHER_LDFLAGS 934 | 935 | OTHER_LIBTOOLFLAGS 936 | 937 | PODS_ROOT 938 | $(SRCROOT) 939 | PRODUCT_NAME 940 | $(TARGET_NAME) 941 | SDKROOT 942 | iphoneos 943 | SKIP_INSTALL 944 | YES 945 | 946 | isa 947 | XCBuildConfiguration 948 | name 949 | Debug 950 | 951 | 72683909C6E3C034659B524C 952 | 953 | children 954 | 955 | E739B678CC4C0567E2CDAD88 956 | 042847804442C773B56E1EEB 957 | 9FA881C605CBCD96D54E2A44 958 | 6130524343BD62D16DFA42B8 959 | 81647A4614CBEB1092F6DFA9 960 | F4B757670C7FBA7CD47C39CC 961 | 7934DC5B82E1BBDBC30BDEAC 962 | 963 | isa 964 | PBXGroup 965 | name 966 | Pods-RKColorSlider 967 | path 968 | Target Support Files/Pods-RKColorSlider 969 | sourceTree 970 | <group> 971 | 972 | 72A7C37EE757CD786856604F 973 | 974 | containerPortal 975 | 4009B1C1A1791B7323CFE4B0 976 | isa 977 | PBXContainerItemProxy 978 | proxyType 979 | 1 980 | remoteGlobalIDString 981 | AD18ACF432900B0978A2B945 982 | remoteInfo 983 | Pods-RKColorSlider-RKColorSlider 984 | 985 | 7353AA943830E62A82DBC0D3 986 | 987 | explicitFileType 988 | archive.ar 989 | includeInIndex 990 | 0 991 | isa 992 | PBXFileReference 993 | name 994 | libPods-RKColorSlider.a 995 | path 996 | libPods-RKColorSlider.a 997 | sourceTree 998 | BUILT_PRODUCTS_DIR 999 | 1000 | 74AAC0AC377E12707DCB8D3D 1001 | 1002 | buildConfigurations 1003 | 1004 | 31BE5520519C8210299BD54B 1005 | 96F2D9B36CE1024CB1A93029 1006 | 1007 | defaultConfigurationIsVisible 1008 | 0 1009 | defaultConfigurationName 1010 | Release 1011 | isa 1012 | XCConfigurationList 1013 | 1014 | 7564F896BF850DF6273B8AB0 1015 | 1016 | fileRef 1017 | CC363E1C54A036499E1C4B69 1018 | isa 1019 | PBXBuildFile 1020 | 1021 | 7693C6290AC0F0E7F0C53A6C 1022 | 1023 | includeInIndex 1024 | 1 1025 | isa 1026 | PBXFileReference 1027 | lastKnownFileType 1028 | sourcecode.c.objc 1029 | path 1030 | RKColorSlider.m 1031 | sourceTree 1032 | <group> 1033 | 1034 | 7934DC5B82E1BBDBC30BDEAC 1035 | 1036 | includeInIndex 1037 | 1 1038 | isa 1039 | PBXFileReference 1040 | lastKnownFileType 1041 | text.xcconfig 1042 | path 1043 | Pods-RKColorSlider.release.xcconfig 1044 | sourceTree 1045 | <group> 1046 | 1047 | 796661AE57288DA503B351BF 1048 | 1049 | fileRef 1050 | CC363E1C54A036499E1C4B69 1051 | isa 1052 | PBXBuildFile 1053 | 1054 | 805D7E13E2B744CE2701C951 1055 | 1056 | includeInIndex 1057 | 1 1058 | isa 1059 | PBXFileReference 1060 | lastKnownFileType 1061 | text.xcconfig 1062 | path 1063 | Pods-Tests.release.xcconfig 1064 | sourceTree 1065 | <group> 1066 | 1067 | 807AFBF6BC31695FB645F0DA 1068 | 1069 | buildSettings 1070 | 1071 | ENABLE_STRICT_OBJC_MSGSEND 1072 | YES 1073 | PRODUCT_NAME 1074 | RKColorSlider 1075 | SDKROOT 1076 | iphoneos 1077 | SKIP_INSTALL 1078 | YES 1079 | WRAPPER_EXTENSION 1080 | bundle 1081 | 1082 | isa 1083 | XCBuildConfiguration 1084 | name 1085 | Release 1086 | 1087 | 81647A4614CBEB1092F6DFA9 1088 | 1089 | includeInIndex 1090 | 1 1091 | isa 1092 | PBXFileReference 1093 | lastKnownFileType 1094 | text.script.sh 1095 | path 1096 | Pods-RKColorSlider-resources.sh 1097 | sourceTree 1098 | <group> 1099 | 1100 | 830847E78FEFE062777BA189 1101 | 1102 | containerPortal 1103 | 4009B1C1A1791B7323CFE4B0 1104 | isa 1105 | PBXContainerItemProxy 1106 | proxyType 1107 | 1 1108 | remoteGlobalIDString 1109 | 619A4C2CE950EDC6BCA3C3B0 1110 | remoteInfo 1111 | Pods-Tests-RKColorSlider-RKColorSlider 1112 | 1113 | 837924F422E7082DEAD0FF7B 1114 | 1115 | fileRef 1116 | 8BAE8871BC3C5844953E9A18 1117 | isa 1118 | PBXBuildFile 1119 | 1120 | 8B815E227832A384668A81DE 1121 | 1122 | includeInIndex 1123 | 1 1124 | isa 1125 | PBXFileReference 1126 | lastKnownFileType 1127 | text.script.sh 1128 | path 1129 | Pods-Tests-resources.sh 1130 | sourceTree 1131 | <group> 1132 | 1133 | 8BAE8871BC3C5844953E9A18 1134 | 1135 | includeInIndex 1136 | 1 1137 | isa 1138 | PBXFileReference 1139 | lastKnownFileType 1140 | sourcecode.c.objc 1141 | path 1142 | Pods-RKColorSlider-RKColorSlider-dummy.m 1143 | sourceTree 1144 | <group> 1145 | 1146 | 8DF18950B093F4D96D986EAF 1147 | 1148 | buildSettings 1149 | 1150 | ENABLE_STRICT_OBJC_MSGSEND 1151 | YES 1152 | PRODUCT_NAME 1153 | RKColorSlider 1154 | SDKROOT 1155 | iphoneos 1156 | SKIP_INSTALL 1157 | YES 1158 | WRAPPER_EXTENSION 1159 | bundle 1160 | 1161 | isa 1162 | XCBuildConfiguration 1163 | name 1164 | Release 1165 | 1166 | 9226F95562091F34CB297E4F 1167 | 1168 | fileRef 1169 | 9F2B25D82EF4D30317948975 1170 | isa 1171 | PBXBuildFile 1172 | 1173 | 958A2171F8BEB5FB1442CC0B 1174 | 1175 | includeInIndex 1176 | 1 1177 | isa 1178 | PBXFileReference 1179 | lastKnownFileType 1180 | sourcecode.c.h 1181 | name 1182 | Pods-Tests-RKColorSlider-prefix.pch 1183 | path 1184 | ../Pods-Tests-RKColorSlider/Pods-Tests-RKColorSlider-prefix.pch 1185 | sourceTree 1186 | <group> 1187 | 1188 | 9630BCF300276D25E225A4E7 1189 | 1190 | buildActionMask 1191 | 2147483647 1192 | files 1193 | 1194 | isa 1195 | PBXSourcesBuildPhase 1196 | runOnlyForDeploymentPostprocessing 1197 | 0 1198 | 1199 | 96F2D9B36CE1024CB1A93029 1200 | 1201 | baseConfigurationReference 1202 | 029936939743C1D829198A8A 1203 | buildSettings 1204 | 1205 | ENABLE_STRICT_OBJC_MSGSEND 1206 | YES 1207 | GCC_PREFIX_HEADER 1208 | Target Support Files/Pods-Tests-RKColorSlider/Pods-Tests-RKColorSlider-prefix.pch 1209 | IPHONEOS_DEPLOYMENT_TARGET 1210 | 7.1 1211 | MTL_ENABLE_DEBUG_INFO 1212 | NO 1213 | OTHER_LDFLAGS 1214 | 1215 | OTHER_LIBTOOLFLAGS 1216 | 1217 | PRODUCT_NAME 1218 | $(TARGET_NAME) 1219 | SDKROOT 1220 | iphoneos 1221 | SKIP_INSTALL 1222 | YES 1223 | 1224 | isa 1225 | XCBuildConfiguration 1226 | name 1227 | Release 1228 | 1229 | 9DDA5E97F38C3E0D7EC3252E 1230 | 1231 | fileRef 1232 | 1E7C14C65EF4A7E0E20A4CB7 1233 | isa 1234 | PBXBuildFile 1235 | 1236 | 9F2B25D82EF4D30317948975 1237 | 1238 | includeInIndex 1239 | 1 1240 | isa 1241 | PBXFileReference 1242 | lastKnownFileType 1243 | sourcecode.c.h 1244 | path 1245 | RKColorSlider.h 1246 | sourceTree 1247 | <group> 1248 | 1249 | 9FA881C605CBCD96D54E2A44 1250 | 1251 | includeInIndex 1252 | 1 1253 | isa 1254 | PBXFileReference 1255 | lastKnownFileType 1256 | sourcecode.c.objc 1257 | path 1258 | Pods-RKColorSlider-dummy.m 1259 | sourceTree 1260 | <group> 1261 | 1262 | 9FF30A8FE2053BBEBB03EAE0 1263 | 1264 | includeInIndex 1265 | 1 1266 | isa 1267 | PBXFileReference 1268 | lastKnownFileType 1269 | text.xcconfig 1270 | path 1271 | Pods-RKColorSlider-RKColorSlider.xcconfig 1272 | sourceTree 1273 | <group> 1274 | 1275 | A11B1CEB9E199E24B884E870 1276 | 1277 | buildActionMask 1278 | 2147483647 1279 | files 1280 | 1281 | isa 1282 | PBXFrameworksBuildPhase 1283 | runOnlyForDeploymentPostprocessing 1284 | 0 1285 | 1286 | A1DB5D96592B53F0E7CF210E 1287 | 1288 | explicitFileType 1289 | archive.ar 1290 | includeInIndex 1291 | 0 1292 | isa 1293 | PBXFileReference 1294 | name 1295 | libPods-RKColorSlider-RKColorSlider.a 1296 | path 1297 | libPods-RKColorSlider-RKColorSlider.a 1298 | sourceTree 1299 | BUILT_PRODUCTS_DIR 1300 | 1301 | A5D420307EA405E140E6B345 1302 | 1303 | isa 1304 | PBXTargetDependency 1305 | name 1306 | Pods-RKColorSlider-RKColorSlider 1307 | target 1308 | AD18ACF432900B0978A2B945 1309 | targetProxy 1310 | 72A7C37EE757CD786856604F 1311 | 1312 | A6667BBCE4A2D8BE8D277CE3 1313 | 1314 | children 1315 | 1316 | 4C7B6EC172DD233301786F8D 1317 | DD8068B01031192D684D5431 1318 | ED0F9C3C0F5BE84F84B62E6B 1319 | BEC70B128D6566738F62873B 1320 | 8B815E227832A384668A81DE 1321 | D58E28931ED6B9F356FCB8E1 1322 | 805D7E13E2B744CE2701C951 1323 | 1324 | isa 1325 | PBXGroup 1326 | name 1327 | Pods-Tests 1328 | path 1329 | Target Support Files/Pods-Tests 1330 | sourceTree 1331 | <group> 1332 | 1333 | A8DE1D229594FF1460CDBC61 1334 | 1335 | includeInIndex 1336 | 1 1337 | isa 1338 | PBXFileReference 1339 | lastKnownFileType 1340 | sourcecode.c.objc 1341 | name 1342 | Pods-Tests-RKColorSlider-dummy.m 1343 | path 1344 | ../Pods-Tests-RKColorSlider/Pods-Tests-RKColorSlider-dummy.m 1345 | sourceTree 1346 | <group> 1347 | 1348 | AAA7E5BA9B45697BC823175A 1349 | 1350 | buildActionMask 1351 | 2147483647 1352 | files 1353 | 1354 | 796661AE57288DA503B351BF 1355 | 1356 | isa 1357 | PBXFrameworksBuildPhase 1358 | runOnlyForDeploymentPostprocessing 1359 | 0 1360 | 1361 | AD18ACF432900B0978A2B945 1362 | 1363 | buildConfigurationList 1364 | C9350618ABE4F69382A26AE3 1365 | buildPhases 1366 | 1367 | 3795BDCAF9F929CE3C871D40 1368 | 01D7B2056A99DAF88813A352 1369 | CD950F50E60CA769C0EA78EC 1370 | 1371 | buildRules 1372 | 1373 | dependencies 1374 | 1375 | 2AB0C35EA75A604D4CA0E64A 1376 | 1377 | isa 1378 | PBXNativeTarget 1379 | name 1380 | Pods-RKColorSlider-RKColorSlider 1381 | productName 1382 | Pods-RKColorSlider-RKColorSlider 1383 | productReference 1384 | A1DB5D96592B53F0E7CF210E 1385 | productType 1386 | com.apple.product-type.library.static 1387 | 1388 | B0A55EF147B299CAB0E9CA76 1389 | 1390 | buildConfigurationList 1391 | 50DD870EBDB2C6AFD47B8716 1392 | buildPhases 1393 | 1394 | 9630BCF300276D25E225A4E7 1395 | A11B1CEB9E199E24B884E870 1396 | B2605DA0671912898650AB79 1397 | 1398 | buildRules 1399 | 1400 | dependencies 1401 | 1402 | isa 1403 | PBXNativeTarget 1404 | name 1405 | Pods-RKColorSlider-RKColorSlider-RKColorSlider 1406 | productName 1407 | Pods-RKColorSlider-RKColorSlider-RKColorSlider 1408 | productReference 1409 | 1882B4D9EE108B98F6F7D27E 1410 | productType 1411 | com.apple.product-type.bundle 1412 | 1413 | B20B9DB43E14C36C21938B33 1414 | 1415 | baseConfigurationReference 1416 | 62DAA650C6A90E2A20853296 1417 | buildSettings 1418 | 1419 | ENABLE_STRICT_OBJC_MSGSEND 1420 | YES 1421 | GCC_PREFIX_HEADER 1422 | Target Support Files/Pods-RKColorSlider-RKColorSlider/Pods-RKColorSlider-RKColorSlider-prefix.pch 1423 | IPHONEOS_DEPLOYMENT_TARGET 1424 | 7.1 1425 | MTL_ENABLE_DEBUG_INFO 1426 | YES 1427 | OTHER_LDFLAGS 1428 | 1429 | OTHER_LIBTOOLFLAGS 1430 | 1431 | PRODUCT_NAME 1432 | $(TARGET_NAME) 1433 | SDKROOT 1434 | iphoneos 1435 | SKIP_INSTALL 1436 | YES 1437 | 1438 | isa 1439 | XCBuildConfiguration 1440 | name 1441 | Debug 1442 | 1443 | B2605DA0671912898650AB79 1444 | 1445 | buildActionMask 1446 | 2147483647 1447 | files 1448 | 1449 | 11BA0DF07D231243CAC7D0BB 1450 | 1451 | isa 1452 | PBXResourcesBuildPhase 1453 | runOnlyForDeploymentPostprocessing 1454 | 0 1455 | 1456 | B64378B770E7F4A1C53A2DBE 1457 | 1458 | buildActionMask 1459 | 2147483647 1460 | files 1461 | 1462 | isa 1463 | PBXFrameworksBuildPhase 1464 | runOnlyForDeploymentPostprocessing 1465 | 0 1466 | 1467 | BEB89AFF7A06168EAA014985 1468 | 1469 | buildActionMask 1470 | 2147483647 1471 | files 1472 | 1473 | 2466BB0008B09080F9D58097 1474 | F8863E9AFE784A98CA531872 1475 | 1476 | isa 1477 | PBXSourcesBuildPhase 1478 | runOnlyForDeploymentPostprocessing 1479 | 0 1480 | 1481 | BEC70B128D6566738F62873B 1482 | 1483 | includeInIndex 1484 | 1 1485 | isa 1486 | PBXFileReference 1487 | lastKnownFileType 1488 | sourcecode.c.h 1489 | path 1490 | Pods-Tests-environment.h 1491 | sourceTree 1492 | <group> 1493 | 1494 | C0C03E872D915F859017540B 1495 | 1496 | containerPortal 1497 | 4009B1C1A1791B7323CFE4B0 1498 | isa 1499 | PBXContainerItemProxy 1500 | proxyType 1501 | 1 1502 | remoteGlobalIDString 1503 | 34879AAA6C8B3B168BADB633 1504 | remoteInfo 1505 | Pods-Tests-RKColorSlider 1506 | 1507 | C2107992DDBA6D019559835E 1508 | 1509 | children 1510 | 1511 | 1E7C14C65EF4A7E0E20A4CB7 1512 | 1513 | isa 1514 | PBXGroup 1515 | name 1516 | Assets 1517 | path 1518 | Assets 1519 | sourceTree 1520 | <group> 1521 | 1522 | C79EA91299DB06B90A864735 1523 | 1524 | buildConfigurations 1525 | 1526 | 2CE037BEE6B1D7ABA07A03DD 1527 | DE6C1AB68D7AD6BCA35544B1 1528 | 1529 | defaultConfigurationIsVisible 1530 | 0 1531 | defaultConfigurationName 1532 | Release 1533 | isa 1534 | XCConfigurationList 1535 | 1536 | C9350618ABE4F69382A26AE3 1537 | 1538 | buildConfigurations 1539 | 1540 | B20B9DB43E14C36C21938B33 1541 | 0C86198F1A62D398CCF841E0 1542 | 1543 | defaultConfigurationIsVisible 1544 | 0 1545 | defaultConfigurationName 1546 | Release 1547 | isa 1548 | XCConfigurationList 1549 | 1550 | CC363E1C54A036499E1C4B69 1551 | 1552 | isa 1553 | PBXFileReference 1554 | lastKnownFileType 1555 | wrapper.framework 1556 | name 1557 | Foundation.framework 1558 | path 1559 | Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/Foundation.framework 1560 | sourceTree 1561 | DEVELOPER_DIR 1562 | 1563 | CD950F50E60CA769C0EA78EC 1564 | 1565 | buildActionMask 1566 | 2147483647 1567 | files 1568 | 1569 | 1E50B51D03C8D476A37597F4 1570 | 1571 | isa 1572 | PBXHeadersBuildPhase 1573 | runOnlyForDeploymentPostprocessing 1574 | 0 1575 | 1576 | D58E28931ED6B9F356FCB8E1 1577 | 1578 | includeInIndex 1579 | 1 1580 | isa 1581 | PBXFileReference 1582 | lastKnownFileType 1583 | text.xcconfig 1584 | path 1585 | Pods-Tests.debug.xcconfig 1586 | sourceTree 1587 | <group> 1588 | 1589 | D9E21951BDB24CCC609ED000 1590 | 1591 | buildSettings 1592 | 1593 | ENABLE_STRICT_OBJC_MSGSEND 1594 | YES 1595 | PRODUCT_NAME 1596 | RKColorSlider 1597 | SDKROOT 1598 | iphoneos 1599 | SKIP_INSTALL 1600 | YES 1601 | WRAPPER_EXTENSION 1602 | bundle 1603 | 1604 | isa 1605 | XCBuildConfiguration 1606 | name 1607 | Debug 1608 | 1609 | DC91D1FB52123FD5BC740EDE 1610 | 1611 | fileRef 1612 | CC363E1C54A036499E1C4B69 1613 | isa 1614 | PBXBuildFile 1615 | 1616 | DD8068B01031192D684D5431 1617 | 1618 | includeInIndex 1619 | 1 1620 | isa 1621 | PBXFileReference 1622 | lastKnownFileType 1623 | text.plist.xml 1624 | path 1625 | Pods-Tests-acknowledgements.plist 1626 | sourceTree 1627 | <group> 1628 | 1629 | DE6C1AB68D7AD6BCA35544B1 1630 | 1631 | buildSettings 1632 | 1633 | ALWAYS_SEARCH_USER_PATHS 1634 | NO 1635 | CLANG_CXX_LANGUAGE_STANDARD 1636 | gnu++0x 1637 | CLANG_CXX_LIBRARY 1638 | libc++ 1639 | CLANG_ENABLE_MODULES 1640 | YES 1641 | CLANG_ENABLE_OBJC_ARC 1642 | YES 1643 | CLANG_WARN_BOOL_CONVERSION 1644 | YES 1645 | CLANG_WARN_CONSTANT_CONVERSION 1646 | YES 1647 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE 1648 | YES 1649 | CLANG_WARN_EMPTY_BODY 1650 | YES 1651 | CLANG_WARN_ENUM_CONVERSION 1652 | YES 1653 | CLANG_WARN_INT_CONVERSION 1654 | YES 1655 | CLANG_WARN_OBJC_ROOT_CLASS 1656 | YES 1657 | CLANG_WARN_UNREACHABLE_CODE 1658 | YES 1659 | CLANG_WARN__DUPLICATE_METHOD_MATCH 1660 | YES 1661 | COPY_PHASE_STRIP 1662 | NO 1663 | ENABLE_NS_ASSERTIONS 1664 | NO 1665 | GCC_C_LANGUAGE_STANDARD 1666 | gnu99 1667 | GCC_PREPROCESSOR_DEFINITIONS 1668 | 1669 | RELEASE=1 1670 | 1671 | GCC_WARN_64_TO_32_BIT_CONVERSION 1672 | YES 1673 | GCC_WARN_ABOUT_RETURN_TYPE 1674 | YES 1675 | GCC_WARN_UNDECLARED_SELECTOR 1676 | YES 1677 | GCC_WARN_UNINITIALIZED_AUTOS 1678 | YES 1679 | GCC_WARN_UNUSED_FUNCTION 1680 | YES 1681 | GCC_WARN_UNUSED_VARIABLE 1682 | YES 1683 | IPHONEOS_DEPLOYMENT_TARGET 1684 | 7.1 1685 | STRIP_INSTALLED_PRODUCT 1686 | NO 1687 | VALIDATE_PRODUCT 1688 | YES 1689 | 1690 | isa 1691 | XCBuildConfiguration 1692 | name 1693 | Release 1694 | 1695 | E739B678CC4C0567E2CDAD88 1696 | 1697 | includeInIndex 1698 | 1 1699 | isa 1700 | PBXFileReference 1701 | lastKnownFileType 1702 | text 1703 | path 1704 | Pods-RKColorSlider-acknowledgements.markdown 1705 | sourceTree 1706 | <group> 1707 | 1708 | EA164C0E8EDCCCFF90E04581 1709 | 1710 | baseConfigurationReference 1711 | 805D7E13E2B744CE2701C951 1712 | buildSettings 1713 | 1714 | ENABLE_STRICT_OBJC_MSGSEND 1715 | YES 1716 | IPHONEOS_DEPLOYMENT_TARGET 1717 | 7.1 1718 | MTL_ENABLE_DEBUG_INFO 1719 | NO 1720 | OTHER_LDFLAGS 1721 | 1722 | OTHER_LIBTOOLFLAGS 1723 | 1724 | PODS_ROOT 1725 | $(SRCROOT) 1726 | PRODUCT_NAME 1727 | $(TARGET_NAME) 1728 | SDKROOT 1729 | iphoneos 1730 | SKIP_INSTALL 1731 | YES 1732 | 1733 | isa 1734 | XCBuildConfiguration 1735 | name 1736 | Release 1737 | 1738 | ED0F9C3C0F5BE84F84B62E6B 1739 | 1740 | includeInIndex 1741 | 1 1742 | isa 1743 | PBXFileReference 1744 | lastKnownFileType 1745 | sourcecode.c.objc 1746 | path 1747 | Pods-Tests-dummy.m 1748 | sourceTree 1749 | <group> 1750 | 1751 | EF14A8109A25084A9718778C 1752 | 1753 | buildActionMask 1754 | 2147483647 1755 | files 1756 | 1757 | 1D7290693D15BE8AC1FB5C63 1758 | 1759 | isa 1760 | PBXFrameworksBuildPhase 1761 | runOnlyForDeploymentPostprocessing 1762 | 0 1763 | 1764 | F17166038A7EB27C5730121C 1765 | 1766 | buildConfigurationList 1767 | 1E5717B1EEB67663A15A4C75 1768 | buildPhases 1769 | 1770 | 670611F67CDDA32C1184859B 1771 | 6C98F2717B5020522C7677A7 1772 | 1773 | buildRules 1774 | 1775 | dependencies 1776 | 1777 | 1773DA5CD850217B6DF0739A 1778 | 1779 | isa 1780 | PBXNativeTarget 1781 | name 1782 | Pods-Tests 1783 | productName 1784 | Pods-Tests 1785 | productReference 1786 | 0A350763509F0A3D0BDB5F76 1787 | productType 1788 | com.apple.product-type.library.static 1789 | 1790 | F3D16E4F5766A68E0002BE5A 1791 | 1792 | includeInIndex 1793 | 1 1794 | isa 1795 | PBXFileReference 1796 | lastKnownFileType 1797 | sourcecode.c.h 1798 | path 1799 | Pods-RKColorSlider-RKColorSlider-prefix.pch 1800 | sourceTree 1801 | <group> 1802 | 1803 | F4B757670C7FBA7CD47C39CC 1804 | 1805 | includeInIndex 1806 | 1 1807 | isa 1808 | PBXFileReference 1809 | lastKnownFileType 1810 | text.xcconfig 1811 | path 1812 | Pods-RKColorSlider.debug.xcconfig 1813 | sourceTree 1814 | <group> 1815 | 1816 | F81301A895CE319F0813E972 1817 | 1818 | children 1819 | 1820 | 9F2B25D82EF4D30317948975 1821 | 7693C6290AC0F0E7F0C53A6C 1822 | 1823 | isa 1824 | PBXGroup 1825 | name 1826 | Classes 1827 | path 1828 | Classes 1829 | sourceTree 1830 | <group> 1831 | 1832 | F8863E9AFE784A98CA531872 1833 | 1834 | fileRef 1835 | 7693C6290AC0F0E7F0C53A6C 1836 | isa 1837 | PBXBuildFile 1838 | 1839 | FAB19343EA388C95A5CD4AF6 1840 | 1841 | children 1842 | 1843 | 72683909C6E3C034659B524C 1844 | A6667BBCE4A2D8BE8D277CE3 1845 | 1846 | isa 1847 | PBXGroup 1848 | name 1849 | Targets Support Files 1850 | sourceTree 1851 | <group> 1852 | 1853 | 1854 | rootObject 1855 | 4009B1C1A1791B7323CFE4B0 1856 | 1857 | 1858 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RKColorSlider-RKColorSlider/Pods-RKColorSlider-RKColorSlider-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-RKColorSlider-RKColorSlider.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RKColorSlider" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/RKColorSlider" 4 | OTHER_LDFLAGS = -ObjC 5 | PODS_ROOT = ${SRCROOT} -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RKColorSlider-RKColorSlider/Pods-RKColorSlider-RKColorSlider-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_RKColorSlider_RKColorSlider : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_RKColorSlider_RKColorSlider 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RKColorSlider-RKColorSlider/Pods-RKColorSlider-RKColorSlider-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-RKColorSlider-environment.h" 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RKColorSlider-RKColorSlider/Pods-RKColorSlider-RKColorSlider.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rich86man/RKColorSlider/f7885f1c08c6bc071f50a776cfe4bffb6ca89397/Example/Pods/Target Support Files/Pods-RKColorSlider-RKColorSlider/Pods-RKColorSlider-RKColorSlider.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RKColorSlider/Pods-RKColorSlider-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## RKColorSlider 5 | 6 | Copyright (c) 2015 rich86man 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 - http://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RKColorSlider/Pods-RKColorSlider-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) 2015 rich86man <richardbkirk@gmail.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 | Title 38 | RKColorSlider 39 | Type 40 | PSGroupSpecifier 41 | 42 | 43 | FooterText 44 | Generated by CocoaPods - http://cocoapods.org 45 | Title 46 | 47 | Type 48 | PSGroupSpecifier 49 | 50 | 51 | StringsTable 52 | Acknowledgements 53 | Title 54 | Acknowledgements 55 | 56 | 57 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RKColorSlider/Pods-RKColorSlider-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_RKColorSlider : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_RKColorSlider 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RKColorSlider/Pods-RKColorSlider-environment.h: -------------------------------------------------------------------------------- 1 | 2 | // To check if a library is compiled with CocoaPods you 3 | // can use the `COCOAPODS` macro definition which is 4 | // defined in the xcconfigs so it is available in 5 | // headers also when they are imported in the client 6 | // project. 7 | 8 | 9 | // RKColorSlider 10 | #define COCOAPODS_POD_AVAILABLE_RKColorSlider 11 | #define COCOAPODS_VERSION_MAJOR_RKColorSlider 0 12 | #define COCOAPODS_VERSION_MINOR_RKColorSlider 1 13 | #define COCOAPODS_VERSION_PATCH_RKColorSlider 0 14 | 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RKColorSlider/Pods-RKColorSlider-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | install_resource() 10 | { 11 | case $1 in 12 | *.storyboard) 13 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 14 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 15 | ;; 16 | *.xib) 17 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 18 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 19 | ;; 20 | *.framework) 21 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 22 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 23 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 24 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 25 | ;; 26 | *.xcdatamodel) 27 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 28 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 29 | ;; 30 | *.xcdatamodeld) 31 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 32 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 33 | ;; 34 | *.xcmappingmodel) 35 | echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" 36 | xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" 37 | ;; 38 | *.xcassets) 39 | ;; 40 | /*) 41 | echo "$1" 42 | echo "$1" >> "$RESOURCES_TO_COPY" 43 | ;; 44 | *) 45 | echo "${PODS_ROOT}/$1" 46 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 47 | ;; 48 | esac 49 | } 50 | install_resource "${BUILT_PRODUCTS_DIR}/RKColorSlider.bundle" 51 | 52 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 53 | if [[ "${ACTION}" == "install" ]]; then 54 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 55 | fi 56 | rm -f "$RESOURCES_TO_COPY" 57 | 58 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ `find . -name '*.xcassets' | wc -l` -ne 0 ] 59 | then 60 | case "${TARGETED_DEVICE_FAMILY}" in 61 | 1,2) 62 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 63 | ;; 64 | 1) 65 | TARGET_DEVICE_ARGS="--target-device iphone" 66 | ;; 67 | 2) 68 | TARGET_DEVICE_ARGS="--target-device ipad" 69 | ;; 70 | *) 71 | TARGET_DEVICE_ARGS="--target-device mac" 72 | ;; 73 | esac 74 | find "${PWD}" -name "*.xcassets" -print0 | xargs -0 actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 75 | fi 76 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RKColorSlider/Pods-RKColorSlider.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/RKColorSlider" 3 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/RKColorSlider" 4 | OTHER_LDFLAGS = -ObjC -l"Pods-RKColorSlider-RKColorSlider" 5 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-RKColorSlider/Pods-RKColorSlider.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/RKColorSlider" 3 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/RKColorSlider" 4 | OTHER_LDFLAGS = -ObjC -l"Pods-RKColorSlider-RKColorSlider" 5 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-RKColorSlider/Pods-Tests-RKColorSlider-Private.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Pods-Tests-RKColorSlider.xcconfig" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/RKColorSlider" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/RKColorSlider" 4 | OTHER_LDFLAGS = -ObjC 5 | PODS_ROOT = ${SRCROOT} -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-RKColorSlider/Pods-Tests-RKColorSlider-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Tests_RKColorSlider : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Tests_RKColorSlider 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-RKColorSlider/Pods-Tests-RKColorSlider-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-Tests-environment.h" 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-RKColorSlider/Pods-Tests-RKColorSlider.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rich86man/RKColorSlider/f7885f1c08c6bc071f50a776cfe4bffb6ca89397/Example/Pods/Target Support Files/Pods-Tests-RKColorSlider/Pods-Tests-RKColorSlider.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## RKColorSlider 5 | 6 | Copyright (c) 2015 rich86man 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 - http://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-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 | Copyright (c) 2015 rich86man <richardbkirk@gmail.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 | Title 38 | RKColorSlider 39 | Type 40 | PSGroupSpecifier 41 | 42 | 43 | FooterText 44 | Generated by CocoaPods - http://cocoapods.org 45 | Title 46 | 47 | Type 48 | PSGroupSpecifier 49 | 50 | 51 | StringsTable 52 | Acknowledgements 53 | Title 54 | Acknowledgements 55 | 56 | 57 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h: -------------------------------------------------------------------------------- 1 | 2 | // To check if a library is compiled with CocoaPods you 3 | // can use the `COCOAPODS` macro definition which is 4 | // defined in the xcconfigs so it is available in 5 | // headers also when they are imported in the client 6 | // project. 7 | 8 | 9 | // RKColorSlider 10 | #define COCOAPODS_POD_AVAILABLE_RKColorSlider 11 | #define COCOAPODS_VERSION_MAJOR_RKColorSlider 0 12 | #define COCOAPODS_VERSION_MINOR_RKColorSlider 1 13 | #define COCOAPODS_VERSION_PATCH_RKColorSlider 0 14 | 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 5 | 6 | RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt 7 | > "$RESOURCES_TO_COPY" 8 | 9 | install_resource() 10 | { 11 | case $1 in 12 | *.storyboard) 13 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 14 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .storyboard`.storyboardc" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 15 | ;; 16 | *.xib) 17 | echo "ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile ${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib ${PODS_ROOT}/$1 --sdk ${SDKROOT}" 18 | ibtool --reference-external-strings-file --errors --warnings --notices --output-format human-readable-text --compile "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$1\" .xib`.nib" "${PODS_ROOT}/$1" --sdk "${SDKROOT}" 19 | ;; 20 | *.framework) 21 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 22 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 23 | echo "rsync -av ${PODS_ROOT}/$1 ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 24 | rsync -av "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 25 | ;; 26 | *.xcdatamodel) 27 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1"`.mom\"" 28 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodel`.mom" 29 | ;; 30 | *.xcdatamodeld) 31 | echo "xcrun momc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd\"" 32 | xcrun momc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcdatamodeld`.momd" 33 | ;; 34 | *.xcmappingmodel) 35 | echo "xcrun mapc \"${PODS_ROOT}/$1\" \"${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm\"" 36 | xcrun mapc "${PODS_ROOT}/$1" "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$1" .xcmappingmodel`.cdm" 37 | ;; 38 | *.xcassets) 39 | ;; 40 | /*) 41 | echo "$1" 42 | echo "$1" >> "$RESOURCES_TO_COPY" 43 | ;; 44 | *) 45 | echo "${PODS_ROOT}/$1" 46 | echo "${PODS_ROOT}/$1" >> "$RESOURCES_TO_COPY" 47 | ;; 48 | esac 49 | } 50 | install_resource "${BUILT_PRODUCTS_DIR}/RKColorSlider.bundle" 51 | 52 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 53 | if [[ "${ACTION}" == "install" ]]; then 54 | rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 55 | fi 56 | rm -f "$RESOURCES_TO_COPY" 57 | 58 | if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ `find . -name '*.xcassets' | wc -l` -ne 0 ] 59 | then 60 | case "${TARGETED_DEVICE_FAMILY}" in 61 | 1,2) 62 | TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" 63 | ;; 64 | 1) 65 | TARGET_DEVICE_ARGS="--target-device iphone" 66 | ;; 67 | 2) 68 | TARGET_DEVICE_ARGS="--target-device ipad" 69 | ;; 70 | *) 71 | TARGET_DEVICE_ARGS="--target-device mac" 72 | ;; 73 | esac 74 | find "${PWD}" -name "*.xcassets" -print0 | xargs -0 actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${IPHONEOS_DEPLOYMENT_TARGET}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" 75 | fi 76 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/RKColorSlider" 3 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/RKColorSlider" 4 | OTHER_LDFLAGS = -ObjC -l"Pods-Tests-RKColorSlider" 5 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 2 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/RKColorSlider" 3 | OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/RKColorSlider" 4 | OTHER_LDFLAGS = -ObjC -l"Pods-Tests-RKColorSlider" 5 | OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) 6 | PODS_ROOT = ${SRCROOT}/Pods -------------------------------------------------------------------------------- /Example/RKColorSlider.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | archiveVersion 6 | 1 7 | classes 8 | 9 | objectVersion 10 | 46 11 | objects 12 | 13 | 03787EC5FFB7F0F166E72810 14 | 15 | children 16 | 17 | B730E40CE469522AC6FE0A11 18 | C7962E906B68E1B24E8EEBA0 19 | FB04DE4D3DE35FE8DD94C102 20 | E5C43978B446F593D63FEBD2 21 | 22 | isa 23 | PBXGroup 24 | name 25 | Pods 26 | sourceTree 27 | <group> 28 | 29 | 0EC3705D462F2CA8802E69D1 30 | 31 | includeInIndex 32 | 1 33 | isa 34 | PBXFileReference 35 | name 36 | RKColorSlider.podspec 37 | path 38 | ../RKColorSlider.podspec 39 | sourceTree 40 | <group> 41 | 42 | 3FD742B6899889C139C3F03C 43 | 44 | buildActionMask 45 | 2147483647 46 | files 47 | 48 | inputPaths 49 | 50 | isa 51 | PBXShellScriptBuildPhase 52 | name 53 | Check Pods Manifest.lock 54 | outputPaths 55 | 56 | runOnlyForDeploymentPostprocessing 57 | 0 58 | shellPath 59 | /bin/sh 60 | shellScript 61 | diff "${PODS_ROOT}/../Podfile.lock" "${PODS_ROOT}/Manifest.lock" > /dev/null 62 | if [[ $? != 0 ]] ; then 63 | cat << EOM 64 | error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation. 65 | EOM 66 | exit 1 67 | fi 68 | 69 | showEnvVarsInLog 70 | 0 71 | 72 | 4D4671A8E11873A2757A8528 73 | 74 | fileRef 75 | BBCB402D3384CE13B5EDD855 76 | isa 77 | PBXBuildFile 78 | 79 | 4EE6C3E6153391E60E4078D6 80 | 81 | includeInIndex 82 | 1 83 | isa 84 | PBXFileReference 85 | name 86 | README.md 87 | path 88 | ../README.md 89 | sourceTree 90 | <group> 91 | 92 | 6003F581195388D10070C39A 93 | 94 | children 95 | 96 | 60FF7A9C1954A5C5007DD14C 97 | 6003F593195388D20070C39A 98 | 6003F5B5195388D20070C39A 99 | 6003F58C195388D20070C39A 100 | 6003F58B195388D20070C39A 101 | 03787EC5FFB7F0F166E72810 102 | 103 | isa 104 | PBXGroup 105 | sourceTree 106 | <group> 107 | 108 | 6003F582195388D10070C39A 109 | 110 | attributes 111 | 112 | CLASSPREFIX 113 | RK 114 | LastUpgradeCheck 115 | 0510 116 | ORGANIZATIONNAME 117 | rich86man 118 | TargetAttributes 119 | 120 | 6003F5AD195388D20070C39A 121 | 122 | TestTargetID 123 | 6003F589195388D20070C39A 124 | 125 | 126 | 127 | buildConfigurationList 128 | 6003F585195388D10070C39A 129 | compatibilityVersion 130 | Xcode 3.2 131 | developmentRegion 132 | English 133 | hasScannedForEncodings 134 | 0 135 | isa 136 | PBXProject 137 | knownRegions 138 | 139 | en 140 | Base 141 | 142 | mainGroup 143 | 6003F581195388D10070C39A 144 | productRefGroup 145 | 6003F58B195388D20070C39A 146 | projectDirPath 147 | 148 | projectReferences 149 | 150 | projectRoot 151 | 152 | targets 153 | 154 | 6003F589195388D20070C39A 155 | 6003F5AD195388D20070C39A 156 | 157 | 158 | 6003F585195388D10070C39A 159 | 160 | buildConfigurations 161 | 162 | 6003F5BD195388D20070C39A 163 | 6003F5BE195388D20070C39A 164 | 165 | defaultConfigurationIsVisible 166 | 0 167 | defaultConfigurationName 168 | Release 169 | isa 170 | XCConfigurationList 171 | 172 | 6003F586195388D20070C39A 173 | 174 | buildActionMask 175 | 2147483647 176 | files 177 | 178 | 6003F59E195388D20070C39A 179 | 6003F5A7195388D20070C39A 180 | 6003F59A195388D20070C39A 181 | 182 | isa 183 | PBXSourcesBuildPhase 184 | runOnlyForDeploymentPostprocessing 185 | 0 186 | 187 | 6003F587195388D20070C39A 188 | 189 | buildActionMask 190 | 2147483647 191 | files 192 | 193 | 6003F590195388D20070C39A 194 | 6003F592195388D20070C39A 195 | 6003F58E195388D20070C39A 196 | 4D4671A8E11873A2757A8528 197 | 198 | isa 199 | PBXFrameworksBuildPhase 200 | runOnlyForDeploymentPostprocessing 201 | 0 202 | 203 | 6003F588195388D20070C39A 204 | 205 | buildActionMask 206 | 2147483647 207 | files 208 | 209 | 6003F5A4195388D20070C39A 210 | 6003F5A9195388D20070C39A 211 | 6003F5A1195388D20070C39A 212 | 6003F598195388D20070C39A 213 | 214 | isa 215 | PBXResourcesBuildPhase 216 | runOnlyForDeploymentPostprocessing 217 | 0 218 | 219 | 6003F589195388D20070C39A 220 | 221 | buildConfigurationList 222 | 6003F5BF195388D20070C39A 223 | buildPhases 224 | 225 | 3FD742B6899889C139C3F03C 226 | 6003F586195388D20070C39A 227 | 6003F587195388D20070C39A 228 | 6003F588195388D20070C39A 229 | 6935672B824BB9903E3A6BF9 230 | 231 | buildRules 232 | 233 | dependencies 234 | 235 | isa 236 | PBXNativeTarget 237 | name 238 | RKColorSlider 239 | productName 240 | RKColorSlider 241 | productReference 242 | 6003F58A195388D20070C39A 243 | productType 244 | com.apple.product-type.application 245 | 246 | 6003F58A195388D20070C39A 247 | 248 | explicitFileType 249 | wrapper.application 250 | includeInIndex 251 | 0 252 | isa 253 | PBXFileReference 254 | path 255 | RKColorSlider.app 256 | sourceTree 257 | BUILT_PRODUCTS_DIR 258 | 259 | 6003F58B195388D20070C39A 260 | 261 | children 262 | 263 | 6003F58A195388D20070C39A 264 | 6003F5AE195388D20070C39A 265 | 266 | isa 267 | PBXGroup 268 | name 269 | Products 270 | sourceTree 271 | <group> 272 | 273 | 6003F58C195388D20070C39A 274 | 275 | children 276 | 277 | 6003F58D195388D20070C39A 278 | 6003F58F195388D20070C39A 279 | 6003F591195388D20070C39A 280 | 6003F5AF195388D20070C39A 281 | BBCB402D3384CE13B5EDD855 282 | E771DF43741E7B4CAC83627D 283 | 284 | isa 285 | PBXGroup 286 | name 287 | Frameworks 288 | sourceTree 289 | <group> 290 | 291 | 6003F58D195388D20070C39A 292 | 293 | isa 294 | PBXFileReference 295 | lastKnownFileType 296 | wrapper.framework 297 | name 298 | Foundation.framework 299 | path 300 | System/Library/Frameworks/Foundation.framework 301 | sourceTree 302 | SDKROOT 303 | 304 | 6003F58E195388D20070C39A 305 | 306 | fileRef 307 | 6003F58D195388D20070C39A 308 | isa 309 | PBXBuildFile 310 | 311 | 6003F58F195388D20070C39A 312 | 313 | isa 314 | PBXFileReference 315 | lastKnownFileType 316 | wrapper.framework 317 | name 318 | CoreGraphics.framework 319 | path 320 | System/Library/Frameworks/CoreGraphics.framework 321 | sourceTree 322 | SDKROOT 323 | 324 | 6003F590195388D20070C39A 325 | 326 | fileRef 327 | 6003F58F195388D20070C39A 328 | isa 329 | PBXBuildFile 330 | 331 | 6003F591195388D20070C39A 332 | 333 | isa 334 | PBXFileReference 335 | lastKnownFileType 336 | wrapper.framework 337 | name 338 | UIKit.framework 339 | path 340 | System/Library/Frameworks/UIKit.framework 341 | sourceTree 342 | SDKROOT 343 | 344 | 6003F592195388D20070C39A 345 | 346 | fileRef 347 | 6003F591195388D20070C39A 348 | isa 349 | PBXBuildFile 350 | 351 | 6003F593195388D20070C39A 352 | 353 | children 354 | 355 | 6003F59C195388D20070C39A 356 | 6003F59D195388D20070C39A 357 | 6003F59F195388D20070C39A 358 | 6003F5A2195388D20070C39A 359 | 6003F5A5195388D20070C39A 360 | 6003F5A6195388D20070C39A 361 | 6003F5A8195388D20070C39A 362 | 6003F594195388D20070C39A 363 | 364 | isa 365 | PBXGroup 366 | path 367 | RKColorSlider 368 | sourceTree 369 | <group> 370 | 371 | 6003F594195388D20070C39A 372 | 373 | children 374 | 375 | 6003F595195388D20070C39A 376 | 6003F596195388D20070C39A 377 | 6003F599195388D20070C39A 378 | 6003F59B195388D20070C39A 379 | 380 | isa 381 | PBXGroup 382 | name 383 | Supporting Files 384 | sourceTree 385 | <group> 386 | 387 | 6003F595195388D20070C39A 388 | 389 | isa 390 | PBXFileReference 391 | lastKnownFileType 392 | text.plist.xml 393 | path 394 | RKColorSlider-Info.plist 395 | sourceTree 396 | <group> 397 | 398 | 6003F596195388D20070C39A 399 | 400 | children 401 | 402 | 6003F597195388D20070C39A 403 | 404 | isa 405 | PBXVariantGroup 406 | name 407 | InfoPlist.strings 408 | sourceTree 409 | <group> 410 | 411 | 6003F597195388D20070C39A 412 | 413 | isa 414 | PBXFileReference 415 | lastKnownFileType 416 | text.plist.strings 417 | name 418 | en 419 | path 420 | en.lproj/InfoPlist.strings 421 | sourceTree 422 | <group> 423 | 424 | 6003F598195388D20070C39A 425 | 426 | fileRef 427 | 6003F596195388D20070C39A 428 | isa 429 | PBXBuildFile 430 | 431 | 6003F599195388D20070C39A 432 | 433 | isa 434 | PBXFileReference 435 | lastKnownFileType 436 | sourcecode.c.objc 437 | path 438 | main.m 439 | sourceTree 440 | <group> 441 | 442 | 6003F59A195388D20070C39A 443 | 444 | fileRef 445 | 6003F599195388D20070C39A 446 | isa 447 | PBXBuildFile 448 | 449 | 6003F59B195388D20070C39A 450 | 451 | isa 452 | PBXFileReference 453 | lastKnownFileType 454 | sourcecode.c.h 455 | path 456 | RKColorSlider-Prefix.pch 457 | sourceTree 458 | <group> 459 | 460 | 6003F59C195388D20070C39A 461 | 462 | isa 463 | PBXFileReference 464 | lastKnownFileType 465 | sourcecode.c.h 466 | path 467 | RKAppDelegate.h 468 | sourceTree 469 | <group> 470 | 471 | 6003F59D195388D20070C39A 472 | 473 | isa 474 | PBXFileReference 475 | lastKnownFileType 476 | sourcecode.c.objc 477 | path 478 | RKAppDelegate.m 479 | sourceTree 480 | <group> 481 | 482 | 6003F59E195388D20070C39A 483 | 484 | fileRef 485 | 6003F59D195388D20070C39A 486 | isa 487 | PBXBuildFile 488 | 489 | 6003F59F195388D20070C39A 490 | 491 | children 492 | 493 | 6003F5A0195388D20070C39A 494 | 495 | isa 496 | PBXVariantGroup 497 | name 498 | Main_iPhone.storyboard 499 | sourceTree 500 | <group> 501 | 502 | 6003F5A0195388D20070C39A 503 | 504 | isa 505 | PBXFileReference 506 | lastKnownFileType 507 | file.storyboard 508 | name 509 | Base 510 | path 511 | Base.lproj/Main_iPhone.storyboard 512 | sourceTree 513 | <group> 514 | 515 | 6003F5A1195388D20070C39A 516 | 517 | fileRef 518 | 6003F59F195388D20070C39A 519 | isa 520 | PBXBuildFile 521 | 522 | 6003F5A2195388D20070C39A 523 | 524 | children 525 | 526 | 6003F5A3195388D20070C39A 527 | 528 | isa 529 | PBXVariantGroup 530 | name 531 | Main_iPad.storyboard 532 | sourceTree 533 | <group> 534 | 535 | 6003F5A3195388D20070C39A 536 | 537 | isa 538 | PBXFileReference 539 | lastKnownFileType 540 | file.storyboard 541 | name 542 | Base 543 | path 544 | Base.lproj/Main_iPad.storyboard 545 | sourceTree 546 | <group> 547 | 548 | 6003F5A4195388D20070C39A 549 | 550 | fileRef 551 | 6003F5A2195388D20070C39A 552 | isa 553 | PBXBuildFile 554 | 555 | 6003F5A5195388D20070C39A 556 | 557 | isa 558 | PBXFileReference 559 | lastKnownFileType 560 | sourcecode.c.h 561 | path 562 | RKViewController.h 563 | sourceTree 564 | <group> 565 | 566 | 6003F5A6195388D20070C39A 567 | 568 | isa 569 | PBXFileReference 570 | lastKnownFileType 571 | sourcecode.c.objc 572 | path 573 | RKViewController.m 574 | sourceTree 575 | <group> 576 | 577 | 6003F5A7195388D20070C39A 578 | 579 | fileRef 580 | 6003F5A6195388D20070C39A 581 | isa 582 | PBXBuildFile 583 | 584 | 6003F5A8195388D20070C39A 585 | 586 | isa 587 | PBXFileReference 588 | lastKnownFileType 589 | folder.assetcatalog 590 | path 591 | Images.xcassets 592 | sourceTree 593 | <group> 594 | 595 | 6003F5A9195388D20070C39A 596 | 597 | fileRef 598 | 6003F5A8195388D20070C39A 599 | isa 600 | PBXBuildFile 601 | 602 | 6003F5AA195388D20070C39A 603 | 604 | buildActionMask 605 | 2147483647 606 | files 607 | 608 | 6003F5BC195388D20070C39A 609 | 610 | isa 611 | PBXSourcesBuildPhase 612 | runOnlyForDeploymentPostprocessing 613 | 0 614 | 615 | 6003F5AB195388D20070C39A 616 | 617 | buildActionMask 618 | 2147483647 619 | files 620 | 621 | 6003F5B0195388D20070C39A 622 | 6003F5B2195388D20070C39A 623 | 6003F5B1195388D20070C39A 624 | 97511ADBB188F47F83AC47F1 625 | 626 | isa 627 | PBXFrameworksBuildPhase 628 | runOnlyForDeploymentPostprocessing 629 | 0 630 | 631 | 6003F5AC195388D20070C39A 632 | 633 | buildActionMask 634 | 2147483647 635 | files 636 | 637 | 6003F5BA195388D20070C39A 638 | 639 | isa 640 | PBXResourcesBuildPhase 641 | runOnlyForDeploymentPostprocessing 642 | 0 643 | 644 | 6003F5AD195388D20070C39A 645 | 646 | buildConfigurationList 647 | 6003F5C2195388D20070C39A 648 | buildPhases 649 | 650 | F6582AA3D9FC351BA678FE36 651 | 6003F5AA195388D20070C39A 652 | 6003F5AB195388D20070C39A 653 | 6003F5AC195388D20070C39A 654 | 70828C79B50635B511AC098B 655 | 656 | buildRules 657 | 658 | dependencies 659 | 660 | 6003F5B4195388D20070C39A 661 | 662 | isa 663 | PBXNativeTarget 664 | name 665 | Tests 666 | productName 667 | RKColorSliderTests 668 | productReference 669 | 6003F5AE195388D20070C39A 670 | productType 671 | com.apple.product-type.bundle.unit-test 672 | 673 | 6003F5AE195388D20070C39A 674 | 675 | explicitFileType 676 | wrapper.cfbundle 677 | includeInIndex 678 | 0 679 | isa 680 | PBXFileReference 681 | path 682 | Tests.xctest 683 | sourceTree 684 | BUILT_PRODUCTS_DIR 685 | 686 | 6003F5AF195388D20070C39A 687 | 688 | isa 689 | PBXFileReference 690 | lastKnownFileType 691 | wrapper.framework 692 | name 693 | XCTest.framework 694 | path 695 | Library/Frameworks/XCTest.framework 696 | sourceTree 697 | DEVELOPER_DIR 698 | 699 | 6003F5B0195388D20070C39A 700 | 701 | fileRef 702 | 6003F5AF195388D20070C39A 703 | isa 704 | PBXBuildFile 705 | 706 | 6003F5B1195388D20070C39A 707 | 708 | fileRef 709 | 6003F58D195388D20070C39A 710 | isa 711 | PBXBuildFile 712 | 713 | 6003F5B2195388D20070C39A 714 | 715 | fileRef 716 | 6003F591195388D20070C39A 717 | isa 718 | PBXBuildFile 719 | 720 | 6003F5B3195388D20070C39A 721 | 722 | containerPortal 723 | 6003F582195388D10070C39A 724 | isa 725 | PBXContainerItemProxy 726 | proxyType 727 | 1 728 | remoteGlobalIDString 729 | 6003F589195388D20070C39A 730 | remoteInfo 731 | RKColorSlider 732 | 733 | 6003F5B4195388D20070C39A 734 | 735 | isa 736 | PBXTargetDependency 737 | target 738 | 6003F589195388D20070C39A 739 | targetProxy 740 | 6003F5B3195388D20070C39A 741 | 742 | 6003F5B5195388D20070C39A 743 | 744 | children 745 | 746 | 6003F5BB195388D20070C39A 747 | 6003F5B6195388D20070C39A 748 | 749 | isa 750 | PBXGroup 751 | path 752 | Tests 753 | sourceTree 754 | <group> 755 | 756 | 6003F5B6195388D20070C39A 757 | 758 | children 759 | 760 | 6003F5B7195388D20070C39A 761 | 6003F5B8195388D20070C39A 762 | 606FC2411953D9B200FFA9A0 763 | 764 | isa 765 | PBXGroup 766 | name 767 | Supporting Files 768 | sourceTree 769 | <group> 770 | 771 | 6003F5B7195388D20070C39A 772 | 773 | isa 774 | PBXFileReference 775 | lastKnownFileType 776 | text.plist.xml 777 | path 778 | Tests-Info.plist 779 | sourceTree 780 | <group> 781 | 782 | 6003F5B8195388D20070C39A 783 | 784 | children 785 | 786 | 6003F5B9195388D20070C39A 787 | 788 | isa 789 | PBXVariantGroup 790 | name 791 | InfoPlist.strings 792 | sourceTree 793 | <group> 794 | 795 | 6003F5B9195388D20070C39A 796 | 797 | isa 798 | PBXFileReference 799 | lastKnownFileType 800 | text.plist.strings 801 | name 802 | en 803 | path 804 | en.lproj/InfoPlist.strings 805 | sourceTree 806 | <group> 807 | 808 | 6003F5BA195388D20070C39A 809 | 810 | fileRef 811 | 6003F5B8195388D20070C39A 812 | isa 813 | PBXBuildFile 814 | 815 | 6003F5BB195388D20070C39A 816 | 817 | isa 818 | PBXFileReference 819 | lastKnownFileType 820 | sourcecode.c.objc 821 | path 822 | Tests.m 823 | sourceTree 824 | <group> 825 | 826 | 6003F5BC195388D20070C39A 827 | 828 | fileRef 829 | 6003F5BB195388D20070C39A 830 | isa 831 | PBXBuildFile 832 | 833 | 6003F5BD195388D20070C39A 834 | 835 | buildSettings 836 | 837 | ALWAYS_SEARCH_USER_PATHS 838 | NO 839 | CLANG_CXX_LANGUAGE_STANDARD 840 | gnu++0x 841 | CLANG_CXX_LIBRARY 842 | libc++ 843 | CLANG_ENABLE_MODULES 844 | YES 845 | CLANG_ENABLE_OBJC_ARC 846 | YES 847 | CLANG_WARN_BOOL_CONVERSION 848 | YES 849 | CLANG_WARN_CONSTANT_CONVERSION 850 | YES 851 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE 852 | YES_ERROR 853 | CLANG_WARN_EMPTY_BODY 854 | YES 855 | CLANG_WARN_ENUM_CONVERSION 856 | YES 857 | CLANG_WARN_INT_CONVERSION 858 | YES 859 | CLANG_WARN_OBJC_ROOT_CLASS 860 | YES_ERROR 861 | CLANG_WARN__DUPLICATE_METHOD_MATCH 862 | YES 863 | CODE_SIGN_IDENTITY[sdk=iphoneos*] 864 | iPhone Developer 865 | COPY_PHASE_STRIP 866 | NO 867 | GCC_C_LANGUAGE_STANDARD 868 | gnu99 869 | GCC_DYNAMIC_NO_PIC 870 | NO 871 | GCC_OPTIMIZATION_LEVEL 872 | 0 873 | GCC_PREPROCESSOR_DEFINITIONS 874 | 875 | DEBUG=1 876 | $(inherited) 877 | 878 | GCC_SYMBOLS_PRIVATE_EXTERN 879 | NO 880 | GCC_WARN_64_TO_32_BIT_CONVERSION 881 | YES 882 | GCC_WARN_ABOUT_RETURN_TYPE 883 | YES_ERROR 884 | GCC_WARN_UNDECLARED_SELECTOR 885 | YES 886 | GCC_WARN_UNINITIALIZED_AUTOS 887 | YES_AGGRESSIVE 888 | GCC_WARN_UNUSED_FUNCTION 889 | YES 890 | GCC_WARN_UNUSED_VARIABLE 891 | YES 892 | IPHONEOS_DEPLOYMENT_TARGET 893 | 7.1 894 | ONLY_ACTIVE_ARCH 895 | YES 896 | SDKROOT 897 | iphoneos 898 | TARGETED_DEVICE_FAMILY 899 | 1,2 900 | 901 | isa 902 | XCBuildConfiguration 903 | name 904 | Debug 905 | 906 | 6003F5BE195388D20070C39A 907 | 908 | buildSettings 909 | 910 | ALWAYS_SEARCH_USER_PATHS 911 | NO 912 | CLANG_CXX_LANGUAGE_STANDARD 913 | gnu++0x 914 | CLANG_CXX_LIBRARY 915 | libc++ 916 | CLANG_ENABLE_MODULES 917 | YES 918 | CLANG_ENABLE_OBJC_ARC 919 | YES 920 | CLANG_WARN_BOOL_CONVERSION 921 | YES 922 | CLANG_WARN_CONSTANT_CONVERSION 923 | YES 924 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE 925 | YES_ERROR 926 | CLANG_WARN_EMPTY_BODY 927 | YES 928 | CLANG_WARN_ENUM_CONVERSION 929 | YES 930 | CLANG_WARN_INT_CONVERSION 931 | YES 932 | CLANG_WARN_OBJC_ROOT_CLASS 933 | YES_ERROR 934 | CLANG_WARN__DUPLICATE_METHOD_MATCH 935 | YES 936 | CODE_SIGN_IDENTITY[sdk=iphoneos*] 937 | iPhone Developer 938 | COPY_PHASE_STRIP 939 | YES 940 | ENABLE_NS_ASSERTIONS 941 | NO 942 | GCC_C_LANGUAGE_STANDARD 943 | gnu99 944 | GCC_WARN_64_TO_32_BIT_CONVERSION 945 | YES 946 | GCC_WARN_ABOUT_RETURN_TYPE 947 | YES_ERROR 948 | GCC_WARN_UNDECLARED_SELECTOR 949 | YES 950 | GCC_WARN_UNINITIALIZED_AUTOS 951 | YES_AGGRESSIVE 952 | GCC_WARN_UNUSED_FUNCTION 953 | YES 954 | GCC_WARN_UNUSED_VARIABLE 955 | YES 956 | IPHONEOS_DEPLOYMENT_TARGET 957 | 7.1 958 | SDKROOT 959 | iphoneos 960 | TARGETED_DEVICE_FAMILY 961 | 1,2 962 | VALIDATE_PRODUCT 963 | YES 964 | 965 | isa 966 | XCBuildConfiguration 967 | name 968 | Release 969 | 970 | 6003F5BF195388D20070C39A 971 | 972 | buildConfigurations 973 | 974 | 6003F5C0195388D20070C39A 975 | 6003F5C1195388D20070C39A 976 | 977 | defaultConfigurationIsVisible 978 | 0 979 | defaultConfigurationName 980 | Release 981 | isa 982 | XCConfigurationList 983 | 984 | 6003F5C0195388D20070C39A 985 | 986 | baseConfigurationReference 987 | B730E40CE469522AC6FE0A11 988 | buildSettings 989 | 990 | ASSETCATALOG_COMPILER_APPICON_NAME 991 | AppIcon 992 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME 993 | LaunchImage 994 | GCC_PRECOMPILE_PREFIX_HEADER 995 | YES 996 | GCC_PREFIX_HEADER 997 | RKColorSlider/RKColorSlider-Prefix.pch 998 | INFOPLIST_FILE 999 | RKColorSlider/RKColorSlider-Info.plist 1000 | PRODUCT_NAME 1001 | $(TARGET_NAME) 1002 | WRAPPER_EXTENSION 1003 | app 1004 | 1005 | isa 1006 | XCBuildConfiguration 1007 | name 1008 | Debug 1009 | 1010 | 6003F5C1195388D20070C39A 1011 | 1012 | baseConfigurationReference 1013 | C7962E906B68E1B24E8EEBA0 1014 | buildSettings 1015 | 1016 | ASSETCATALOG_COMPILER_APPICON_NAME 1017 | AppIcon 1018 | ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME 1019 | LaunchImage 1020 | GCC_PRECOMPILE_PREFIX_HEADER 1021 | YES 1022 | GCC_PREFIX_HEADER 1023 | RKColorSlider/RKColorSlider-Prefix.pch 1024 | INFOPLIST_FILE 1025 | RKColorSlider/RKColorSlider-Info.plist 1026 | PRODUCT_NAME 1027 | $(TARGET_NAME) 1028 | WRAPPER_EXTENSION 1029 | app 1030 | 1031 | isa 1032 | XCBuildConfiguration 1033 | name 1034 | Release 1035 | 1036 | 6003F5C2195388D20070C39A 1037 | 1038 | buildConfigurations 1039 | 1040 | 6003F5C3195388D20070C39A 1041 | 6003F5C4195388D20070C39A 1042 | 1043 | defaultConfigurationIsVisible 1044 | 0 1045 | defaultConfigurationName 1046 | Release 1047 | isa 1048 | XCConfigurationList 1049 | 1050 | 6003F5C3195388D20070C39A 1051 | 1052 | baseConfigurationReference 1053 | FB04DE4D3DE35FE8DD94C102 1054 | buildSettings 1055 | 1056 | BUNDLE_LOADER 1057 | $(BUILT_PRODUCTS_DIR)/RKColorSlider.app/RKColorSlider 1058 | FRAMEWORK_SEARCH_PATHS 1059 | 1060 | $(SDKROOT)/Developer/Library/Frameworks 1061 | $(inherited) 1062 | $(DEVELOPER_FRAMEWORKS_DIR) 1063 | 1064 | GCC_PRECOMPILE_PREFIX_HEADER 1065 | YES 1066 | GCC_PREFIX_HEADER 1067 | Tests/Tests-Prefix.pch 1068 | GCC_PREPROCESSOR_DEFINITIONS 1069 | 1070 | DEBUG=1 1071 | $(inherited) 1072 | 1073 | INFOPLIST_FILE 1074 | Tests/Tests-Info.plist 1075 | PRODUCT_NAME 1076 | $(TARGET_NAME) 1077 | TEST_HOST 1078 | $(BUNDLE_LOADER) 1079 | WRAPPER_EXTENSION 1080 | xctest 1081 | 1082 | isa 1083 | XCBuildConfiguration 1084 | name 1085 | Debug 1086 | 1087 | 6003F5C4195388D20070C39A 1088 | 1089 | baseConfigurationReference 1090 | E5C43978B446F593D63FEBD2 1091 | buildSettings 1092 | 1093 | BUNDLE_LOADER 1094 | $(BUILT_PRODUCTS_DIR)/RKColorSlider.app/RKColorSlider 1095 | FRAMEWORK_SEARCH_PATHS 1096 | 1097 | $(SDKROOT)/Developer/Library/Frameworks 1098 | $(inherited) 1099 | $(DEVELOPER_FRAMEWORKS_DIR) 1100 | 1101 | GCC_PRECOMPILE_PREFIX_HEADER 1102 | YES 1103 | GCC_PREFIX_HEADER 1104 | Tests/Tests-Prefix.pch 1105 | INFOPLIST_FILE 1106 | Tests/Tests-Info.plist 1107 | PRODUCT_NAME 1108 | $(TARGET_NAME) 1109 | TEST_HOST 1110 | $(BUNDLE_LOADER) 1111 | WRAPPER_EXTENSION 1112 | xctest 1113 | 1114 | isa 1115 | XCBuildConfiguration 1116 | name 1117 | Release 1118 | 1119 | 606FC2411953D9B200FFA9A0 1120 | 1121 | isa 1122 | PBXFileReference 1123 | lastKnownFileType 1124 | sourcecode.c.h 1125 | path 1126 | Tests-Prefix.pch 1127 | sourceTree 1128 | <group> 1129 | 1130 | 60FF7A9C1954A5C5007DD14C 1131 | 1132 | children 1133 | 1134 | 0EC3705D462F2CA8802E69D1 1135 | 4EE6C3E6153391E60E4078D6 1136 | D471B6F1931AAE37A59A0795 1137 | 1138 | isa 1139 | PBXGroup 1140 | name 1141 | Podspec Metadata 1142 | sourceTree 1143 | <group> 1144 | 1145 | 6935672B824BB9903E3A6BF9 1146 | 1147 | buildActionMask 1148 | 2147483647 1149 | files 1150 | 1151 | inputPaths 1152 | 1153 | isa 1154 | PBXShellScriptBuildPhase 1155 | name 1156 | Copy Pods Resources 1157 | outputPaths 1158 | 1159 | runOnlyForDeploymentPostprocessing 1160 | 0 1161 | shellPath 1162 | /bin/sh 1163 | shellScript 1164 | "${SRCROOT}/Pods/Target Support Files/Pods-RKColorSlider/Pods-RKColorSlider-resources.sh" 1165 | 1166 | showEnvVarsInLog 1167 | 0 1168 | 1169 | 70828C79B50635B511AC098B 1170 | 1171 | buildActionMask 1172 | 2147483647 1173 | files 1174 | 1175 | inputPaths 1176 | 1177 | isa 1178 | PBXShellScriptBuildPhase 1179 | name 1180 | Copy Pods Resources 1181 | outputPaths 1182 | 1183 | runOnlyForDeploymentPostprocessing 1184 | 0 1185 | shellPath 1186 | /bin/sh 1187 | shellScript 1188 | "${SRCROOT}/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh" 1189 | 1190 | showEnvVarsInLog 1191 | 0 1192 | 1193 | 97511ADBB188F47F83AC47F1 1194 | 1195 | fileRef 1196 | E771DF43741E7B4CAC83627D 1197 | isa 1198 | PBXBuildFile 1199 | 1200 | B730E40CE469522AC6FE0A11 1201 | 1202 | includeInIndex 1203 | 1 1204 | isa 1205 | PBXFileReference 1206 | lastKnownFileType 1207 | text.xcconfig 1208 | name 1209 | Pods-RKColorSlider.debug.xcconfig 1210 | path 1211 | Pods/Target Support Files/Pods-RKColorSlider/Pods-RKColorSlider.debug.xcconfig 1212 | sourceTree 1213 | <group> 1214 | 1215 | BBCB402D3384CE13B5EDD855 1216 | 1217 | explicitFileType 1218 | archive.ar 1219 | includeInIndex 1220 | 0 1221 | isa 1222 | PBXFileReference 1223 | path 1224 | libPods-RKColorSlider.a 1225 | sourceTree 1226 | BUILT_PRODUCTS_DIR 1227 | 1228 | C7962E906B68E1B24E8EEBA0 1229 | 1230 | includeInIndex 1231 | 1 1232 | isa 1233 | PBXFileReference 1234 | lastKnownFileType 1235 | text.xcconfig 1236 | name 1237 | Pods-RKColorSlider.release.xcconfig 1238 | path 1239 | Pods/Target Support Files/Pods-RKColorSlider/Pods-RKColorSlider.release.xcconfig 1240 | sourceTree 1241 | <group> 1242 | 1243 | D471B6F1931AAE37A59A0795 1244 | 1245 | includeInIndex 1246 | 1 1247 | isa 1248 | PBXFileReference 1249 | name 1250 | LICENSE 1251 | path 1252 | ../LICENSE 1253 | sourceTree 1254 | <group> 1255 | 1256 | E5C43978B446F593D63FEBD2 1257 | 1258 | includeInIndex 1259 | 1 1260 | isa 1261 | PBXFileReference 1262 | lastKnownFileType 1263 | text.xcconfig 1264 | name 1265 | Pods-Tests.release.xcconfig 1266 | path 1267 | Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig 1268 | sourceTree 1269 | <group> 1270 | 1271 | E771DF43741E7B4CAC83627D 1272 | 1273 | explicitFileType 1274 | archive.ar 1275 | includeInIndex 1276 | 0 1277 | isa 1278 | PBXFileReference 1279 | path 1280 | libPods-Tests.a 1281 | sourceTree 1282 | BUILT_PRODUCTS_DIR 1283 | 1284 | F6582AA3D9FC351BA678FE36 1285 | 1286 | buildActionMask 1287 | 2147483647 1288 | files 1289 | 1290 | inputPaths 1291 | 1292 | isa 1293 | PBXShellScriptBuildPhase 1294 | name 1295 | Check Pods Manifest.lock 1296 | outputPaths 1297 | 1298 | runOnlyForDeploymentPostprocessing 1299 | 0 1300 | shellPath 1301 | /bin/sh 1302 | shellScript 1303 | diff "${PODS_ROOT}/../Podfile.lock" "${PODS_ROOT}/Manifest.lock" > /dev/null 1304 | if [[ $? != 0 ]] ; then 1305 | cat << EOM 1306 | error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation. 1307 | EOM 1308 | exit 1 1309 | fi 1310 | 1311 | showEnvVarsInLog 1312 | 0 1313 | 1314 | FB04DE4D3DE35FE8DD94C102 1315 | 1316 | includeInIndex 1317 | 1 1318 | isa 1319 | PBXFileReference 1320 | lastKnownFileType 1321 | text.xcconfig 1322 | name 1323 | Pods-Tests.debug.xcconfig 1324 | path 1325 | Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig 1326 | sourceTree 1327 | <group> 1328 | 1329 | 1330 | rootObject 1331 | 6003F582195388D10070C39A 1332 | 1333 | 1334 | -------------------------------------------------------------------------------- /Example/RKColorSlider.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/RKColorSlider.xcodeproj/xcshareddata/xcschemes/RKColorSlider-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 | 61 | 62 | 68 | 69 | 70 | 71 | 72 | 73 | 79 | 80 | 86 | 87 | 88 | 89 | 91 | 92 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /Example/RKColorSlider.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/RKColorSlider/Base.lproj/Main_iPad.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 | -------------------------------------------------------------------------------- /Example/RKColorSlider/Base.lproj/Main_iPhone.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 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /Example/RKColorSlider/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "40x40", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "60x60", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "ipad", 20 | "size" : "29x29", 21 | "scale" : "1x" 22 | }, 23 | { 24 | "idiom" : "ipad", 25 | "size" : "29x29", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "ipad", 30 | "size" : "40x40", 31 | "scale" : "1x" 32 | }, 33 | { 34 | "idiom" : "ipad", 35 | "size" : "40x40", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "ipad", 40 | "size" : "76x76", 41 | "scale" : "1x" 42 | }, 43 | { 44 | "idiom" : "ipad", 45 | "size" : "76x76", 46 | "scale" : "2x" 47 | } 48 | ], 49 | "info" : { 50 | "version" : 1, 51 | "author" : "xcode" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /Example/RKColorSlider/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "portrait", 5 | "idiom" : "iphone", 6 | "extent" : "full-screen", 7 | "minimum-system-version" : "7.0", 8 | "scale" : "2x" 9 | }, 10 | { 11 | "orientation" : "portrait", 12 | "idiom" : "iphone", 13 | "subtype" : "retina4", 14 | "extent" : "full-screen", 15 | "minimum-system-version" : "7.0", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "orientation" : "portrait", 20 | "idiom" : "ipad", 21 | "extent" : "full-screen", 22 | "minimum-system-version" : "7.0", 23 | "scale" : "1x" 24 | }, 25 | { 26 | "orientation" : "landscape", 27 | "idiom" : "ipad", 28 | "extent" : "full-screen", 29 | "minimum-system-version" : "7.0", 30 | "scale" : "1x" 31 | }, 32 | { 33 | "orientation" : "portrait", 34 | "idiom" : "ipad", 35 | "extent" : "full-screen", 36 | "minimum-system-version" : "7.0", 37 | "scale" : "2x" 38 | }, 39 | { 40 | "orientation" : "landscape", 41 | "idiom" : "ipad", 42 | "extent" : "full-screen", 43 | "minimum-system-version" : "7.0", 44 | "scale" : "2x" 45 | } 46 | ], 47 | "info" : { 48 | "version" : 1, 49 | "author" : "xcode" 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /Example/RKColorSlider/RKAppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // RKAppDelegate.h 3 | // RKColorSlider 4 | // 5 | // Created by CocoaPods on 01/11/2015. 6 | // Copyright (c) 2014 rich86man. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface RKAppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Example/RKColorSlider/RKAppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // RKAppDelegate.m 3 | // RKColorSlider 4 | // 5 | // Created by CocoaPods on 01/11/2015. 6 | // Copyright (c) 2014 rich86man. All rights reserved. 7 | // 8 | 9 | #import "RKAppDelegate.h" 10 | 11 | @implementation RKAppDelegate 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/RKColorSlider/RKColorSlider-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | ${PRODUCT_NAME} 9 | CFBundleExecutable 10 | ${EXECUTABLE_NAME} 11 | CFBundleIdentifier 12 | org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier} 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 | UIMainStoryboardFile 28 | Main_iPhone 29 | UIMainStoryboardFile~ipad 30 | Main_iPad 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/RKColorSlider/RKColorSlider-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 15 | #import 16 | #endif 17 | -------------------------------------------------------------------------------- /Example/RKColorSlider/RKViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RKViewController.h 3 | // RKColorSlider 4 | // 5 | // Created by rich86man on 01/11/2015. 6 | // Copyright (c) 2014 rich86man. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface RKViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Example/RKColorSlider/RKViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // RKViewController.m 3 | // RKColorSlider 4 | // 5 | // Created by rich86man on 01/11/2015. 6 | // Copyright (c) 2014 rich86man. All rights reserved. 7 | // 8 | 9 | #import "RKViewController.h" 10 | #import 11 | 12 | @interface RKViewController () 13 | 14 | @property (weak, nonatomic) IBOutlet UIView *testView; 15 | 16 | @end 17 | 18 | @implementation RKViewController 19 | 20 | - (void)viewDidLoad 21 | { 22 | [super viewDidLoad]; 23 | // Do any additional setup after loading the view, typically from a nib. 24 | } 25 | 26 | - (void)didReceiveMemoryWarning 27 | { 28 | [super didReceiveMemoryWarning]; 29 | // Dispose of any resources that can be recreated. 30 | } 31 | 32 | - (IBAction)sliderDidChangeValue:(RKColorSlider *)sender 33 | { 34 | self.testView.backgroundColor = sender.selectedColor; 35 | } 36 | @end 37 | -------------------------------------------------------------------------------- /Example/RKColorSlider/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/RKColorSlider/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // RKColorSlider 4 | // 5 | // Created by rich86man on 01/11/2015. 6 | // Copyright (c) 2014 rich86man. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "RKAppDelegate.h" 12 | 13 | int main(int argc, char * argv[]) 14 | { 15 | @autoreleasepool { 16 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([RKAppDelegate class])); 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier} 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-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every test case source file. 5 | // 6 | 7 | #ifdef __OBJC__ 8 | 9 | 10 | 11 | #endif 12 | -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- 1 | // 2 | // RKColorSliderTests.m 3 | // RKColorSliderTests 4 | // 5 | // Created by rich86man on 01/11/2015. 6 | // Copyright (c) 2014 rich86man. All rights reserved. 7 | // 8 | 9 | ${TEST_EXAMPLE} 10 | -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015 rich86man 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 | -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rich86man/RKColorSlider/f7885f1c08c6bc071f50a776cfe4bffb6ca89397/Pod/Assets/.gitkeep -------------------------------------------------------------------------------- /Pod/Assets/slider@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rich86man/RKColorSlider/f7885f1c08c6bc071f50a776cfe4bffb6ca89397/Pod/Assets/slider@2x.png -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rich86man/RKColorSlider/f7885f1c08c6bc071f50a776cfe4bffb6ca89397/Pod/Classes/.gitkeep -------------------------------------------------------------------------------- /Pod/Classes/RKColorSlider.h: -------------------------------------------------------------------------------- 1 | // 2 | // RKColorSlider.h 3 | // Pods 4 | // 5 | // Created by Richard Kirk on 1/11/15. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface RKColorSlider : UIControl 12 | @property (strong, nonatomic) UIView *previewView; 13 | @property (strong, nonatomic, readonly) UIColor *selectedColor; 14 | 15 | 16 | 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Pod/Classes/RKColorSlider.m: -------------------------------------------------------------------------------- 1 | // 2 | // RKColorSlider.m 3 | // Pods 4 | // 5 | // Created by Richard Kirk on 1/11/15. 6 | // 7 | // 8 | 9 | #import "RKColorSlider.h" 10 | 11 | double projectNormal(double n, double start, double end) 12 | { 13 | return start + (n * (end - start)); 14 | } 15 | 16 | double normalize(double value, double startValue, double endValue) 17 | { 18 | return (value - startValue) / (endValue - startValue); 19 | } 20 | 21 | double solveLinearEquation(double input, double startValue, double endValue, double outputStart, double outputEnd) 22 | { 23 | return projectNormal(MAX(0, MIN(1, normalize(input, startValue, endValue))), outputStart, outputEnd); 24 | } 25 | 26 | 27 | @interface RKColorSlider() 28 | @property (strong, nonatomic) UIImageView *sliderImageView; 29 | @end 30 | 31 | @implementation RKColorSlider 32 | 33 | 34 | - (instancetype)initWithFrame:(CGRect)frame 35 | { 36 | if (self = [super initWithFrame:frame]) { 37 | [self setup]; 38 | } 39 | return self; 40 | } 41 | 42 | 43 | - (id)initWithCoder:(NSCoder *)aDecoder 44 | { 45 | if (self = [super initWithCoder:aDecoder]) { 46 | [self setup]; 47 | } 48 | return self; 49 | } 50 | 51 | 52 | - (void)setup 53 | { 54 | self.sliderImageView = [[UIImageView alloc] initWithFrame:self.bounds]; 55 | self.sliderImageView.image = [self sliderImage]; 56 | 57 | [self addSubview:self.sliderImageView]; 58 | 59 | self.previewView = [[UIView alloc] initWithFrame:CGRectMake(self.frame.size.width / 2, 0, 50, 50)]; 60 | self.previewView.alpha = 0.0; 61 | self.previewView.layer.cornerRadius = self.previewView.frame.size.width / 2; 62 | self.previewView.layer.masksToBounds = YES; 63 | [self addSubview:self.previewView]; 64 | self.clipsToBounds = NO; 65 | } 66 | 67 | - (UIImage *)sliderImage 68 | { 69 | NSString *bundlePath = [[NSBundle mainBundle] pathForResource:@"RKColorSlider" ofType:@"bundle"]; 70 | NSBundle *bundle = [NSBundle bundleWithPath:bundlePath]; 71 | NSString *imagePath = [bundle pathForResource:@"slider@2x" ofType:@"png"]; 72 | return [UIImage imageWithContentsOfFile:imagePath]; 73 | } 74 | 75 | - (BOOL)beginTrackingWithTouch:(UITouch *)touch withEvent:(UIEvent *)event 76 | { 77 | [super beginTrackingWithTouch:touch withEvent:event]; 78 | [UIView animateWithDuration:0.3 animations:^{ 79 | self.previewView.frame = CGRectMake(-150, self.previewView.frame.origin.y, 80 | self.previewView.frame.size.width, self.previewView.frame.size.height); 81 | self.previewView.alpha = 1.0; 82 | }]; 83 | return YES; 84 | } 85 | 86 | 87 | - (BOOL)continueTrackingWithTouch:(UITouch *)touch withEvent:(UIEvent *)event 88 | { 89 | [super continueTrackingWithTouch:touch withEvent:event]; 90 | CGPoint point = [touch locationInView:self]; 91 | CGFloat hue = solveLinearEquation(point.y, 90, self.frame.size.height, 0, 1); 92 | CGFloat s = solveLinearEquation(point.y, 30, 75, 0, 1); 93 | CGFloat b = solveLinearEquation(point.y, 0, 30, 0, 1); 94 | _selectedColor = [UIColor colorWithHue:hue saturation:s brightness:b alpha:1.0]; 95 | self.previewView.backgroundColor = _selectedColor; 96 | [self sendActionsForControlEvents:UIControlEventValueChanged]; 97 | [UIView animateWithDuration:0.3 animations:^{ 98 | self.previewView.frame = CGRectMake(self.previewView.frame.origin.x, point.y, 99 | self.previewView.frame.size.width, self.previewView.frame.size.height); 100 | }]; 101 | return YES; 102 | } 103 | 104 | 105 | - (void)endTrackingWithTouch:(UITouch *)touch withEvent:(UIEvent *)event 106 | { 107 | [UIView animateWithDuration:0.3 animations:^{ 108 | self.previewView.frame = CGRectMake(0, self.previewView.frame.origin.y, 109 | self.previewView.frame.size.width, self.previewView.frame.size.height); 110 | self.previewView.alpha = 0.0; 111 | }]; 112 | [super endTrackingWithTouch:touch withEvent:event]; 113 | } 114 | 115 | @end 116 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # RKColorSlider 2 | 3 | [![CI Status](http://img.shields.io/travis/rich86man/RKColorSlider.svg?style=flat)](https://travis-ci.org/rich86man/RKColorSlider) 4 | [![Version](https://img.shields.io/cocoapods/v/RKColorSlider.svg?style=flat)](http://cocoadocs.org/docsets/RKColorSlider) 5 | [![License](https://img.shields.io/cocoapods/l/RKColorSlider.svg?style=flat)](http://cocoadocs.org/docsets/RKColorSlider) 6 | [![Platform](https://img.shields.io/cocoapods/p/RKColorSlider.svg?style=flat)](http://cocoadocs.org/docsets/RKColorSlider) 7 | 8 | ![](http://i.imgur.com/7Ymzivs.gif) 9 | 10 | ## Usage 11 | 12 | To run the example project, clone the repo, and run `pod install` from the Example directory first. 13 | 14 | ## Requirements 15 | 16 | ## Installation 17 | 18 | RKColorSlider is available through [CocoaPods](http://cocoapods.org). To install 19 | it, simply add the following line to your Podfile: 20 | 21 | pod "RKColorSlider" 22 | 23 | ## Author 24 | 25 | rich86man, richardbkirk@gmail.com 26 | 27 | ## License 28 | 29 | RKColorSlider is available under the MIT license. See the LICENSE file for more info. 30 | 31 | -------------------------------------------------------------------------------- /RKColorSlider.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint RKColorSlider.podspec' to ensure this is a 3 | # valid spec and remove all comments before submitting the spec. 4 | # 5 | # Any lines starting with a # are optional, but encouraged 6 | # 7 | # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html 8 | # 9 | 10 | Pod::Spec.new do |s| 11 | s.name = "RKColorSlider" 12 | s.version = "0.1.0" 13 | s.summary = "A color picker similar to the color picker found in Facebook Slingshot" 14 | s.description = <<-DESC 15 | A simple UIControl that you can use to choose a color with minimal UI. Very similar to the color picker found in Facebook's popular app Slingshot 16 | DESC 17 | s.homepage = "https://github.com/Rich86man/RKColorSlider" 18 | s.screenshots = "http://i.imgur.com/X2g6BxZ.png" 19 | s.license = 'MIT' 20 | s.author = { "rich86man" => "richardbkirk@gmail.com" } 21 | s.source = { :git => "https://github.com/rich86man/RKColorSlider.git", :tag => s.version.to_s } 22 | s.social_media_url = 'https://twitter.com/Rich86man' 23 | 24 | s.platform = :ios, '7.0' 25 | s.requires_arc = true 26 | 27 | s.source_files = 'Pod/Classes' 28 | s.resource_bundles = { 29 | 'RKColorSlider' => ['Pod/Assets/*.png'] 30 | } 31 | 32 | s.public_header_files = 'Pod/Classes/RKColorSlider.h' 33 | end 34 | --------------------------------------------------------------------------------