├── .gitignore ├── .swift-version ├── .travis.yml ├── Example_Dynamic_Init ├── KJExpandableTableTree.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── KJExpandableTableTree-Example.xcscheme ├── KJExpandableTableTree.xcworkspace │ └── contents.xcworkspacedata ├── KJExpandableTableTree │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── 1st.imageset │ │ │ ├── 1st@2x.jpeg │ │ │ ├── 1st@3x.png │ │ │ └── Contents.json │ │ ├── 2nd.imageset │ │ │ ├── 2nd@2x.jpeg │ │ │ ├── 2nd@3x.png │ │ │ └── Contents.json │ │ ├── 3rd.imageset │ │ │ ├── 3rd@2x.jpeg │ │ │ ├── 3rd@3x.png │ │ │ └── Contents.json │ │ ├── 4th.imageset │ │ │ ├── 4th@2x.jpeg │ │ │ ├── 4th@3x.png │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── minus.imageset │ │ │ ├── Contents.json │ │ │ ├── minus@2x.png │ │ │ └── minus@3x.png │ │ └── plus.imageset │ │ │ ├── Contents.json │ │ │ ├── plus@2x.png │ │ │ └── plus@3x.png │ ├── Info.plist │ ├── TableviewCells │ │ ├── Childs2ndStageTableViewCell.swift │ │ ├── Childs2ndStageTableViewCell.xib │ │ ├── Childs3rdStageTableViewCell.swift │ │ ├── Childs3rdStageTableViewCell.xib │ │ ├── ParentsTableViewCell.swift │ │ └── ParentsTableViewCell.xib │ ├── Tree.json │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── KJExpandableTableTree.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── KJExpandableTableTree │ │ ├── Info.plist │ │ ├── KJExpandableTableTree-dummy.m │ │ ├── KJExpandableTableTree-prefix.pch │ │ ├── KJExpandableTableTree-umbrella.h │ │ ├── KJExpandableTableTree.modulemap │ │ └── KJExpandableTableTree.xcconfig │ │ ├── Pods-KJExpandableTableTree_Example │ │ ├── Info.plist │ │ ├── Pods-KJExpandableTableTree_Example-acknowledgements.markdown │ │ ├── Pods-KJExpandableTableTree_Example-acknowledgements.plist │ │ ├── Pods-KJExpandableTableTree_Example-dummy.m │ │ ├── Pods-KJExpandableTableTree_Example-frameworks.sh │ │ ├── Pods-KJExpandableTableTree_Example-resources.sh │ │ ├── Pods-KJExpandableTableTree_Example-umbrella.h │ │ ├── Pods-KJExpandableTableTree_Example.debug.xcconfig │ │ ├── Pods-KJExpandableTableTree_Example.modulemap │ │ └── Pods-KJExpandableTableTree_Example.release.xcconfig │ │ └── Pods-KJExpandableTableTree_Tests │ │ ├── Info.plist │ │ ├── Pods-KJExpandableTableTree_Tests-acknowledgements.markdown │ │ ├── Pods-KJExpandableTableTree_Tests-acknowledgements.plist │ │ ├── Pods-KJExpandableTableTree_Tests-dummy.m │ │ ├── Pods-KJExpandableTableTree_Tests-frameworks.sh │ │ ├── Pods-KJExpandableTableTree_Tests-resources.sh │ │ ├── Pods-KJExpandableTableTree_Tests-umbrella.h │ │ ├── Pods-KJExpandableTableTree_Tests.debug.xcconfig │ │ ├── Pods-KJExpandableTableTree_Tests.modulemap │ │ └── Pods-KJExpandableTableTree_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── Example_Static_Init ├── KJExpandableTableTree.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── KJExpandableTableTree-Example.xcscheme ├── KJExpandableTableTree.xcworkspace │ └── contents.xcworkspacedata ├── KJExpandableTableTree │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── 1st.imageset │ │ │ ├── 1st@2x.jpeg │ │ │ ├── 1st@3x.png │ │ │ └── Contents.json │ │ ├── 2nd.imageset │ │ │ ├── 2nd@2x.jpeg │ │ │ ├── 2nd@3x.png │ │ │ └── Contents.json │ │ ├── 3rd.imageset │ │ │ ├── 3rd@2x.jpeg │ │ │ ├── 3rd@3x.png │ │ │ └── Contents.json │ │ ├── 4th.imageset │ │ │ ├── 4th@2x.jpeg │ │ │ ├── 4th@3x.png │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── minus.imageset │ │ │ ├── Contents.json │ │ │ ├── minus@2x.png │ │ │ └── minus@3x.png │ │ └── plus.imageset │ │ │ ├── Contents.json │ │ │ ├── plus@2x.png │ │ │ └── plus@3x.png │ ├── Info.plist │ ├── TableviewCells │ │ ├── Childs2ndStageTableViewCell.swift │ │ ├── Childs2ndStageTableViewCell.xib │ │ ├── Childs3rdStageTableViewCell.swift │ │ ├── Childs3rdStageTableViewCell.xib │ │ ├── ParentsTableViewCell.swift │ │ └── ParentsTableViewCell.xib │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── KJExpandableTableTree.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── KJExpandableTableTree │ │ ├── Info.plist │ │ ├── KJExpandableTableTree-dummy.m │ │ ├── KJExpandableTableTree-prefix.pch │ │ ├── KJExpandableTableTree-umbrella.h │ │ ├── KJExpandableTableTree.modulemap │ │ └── KJExpandableTableTree.xcconfig │ │ ├── Pods-KJExpandableTableTree_Example │ │ ├── Info.plist │ │ ├── Pods-KJExpandableTableTree_Example-acknowledgements.markdown │ │ ├── Pods-KJExpandableTableTree_Example-acknowledgements.plist │ │ ├── Pods-KJExpandableTableTree_Example-dummy.m │ │ ├── Pods-KJExpandableTableTree_Example-frameworks.sh │ │ ├── Pods-KJExpandableTableTree_Example-resources.sh │ │ ├── Pods-KJExpandableTableTree_Example-umbrella.h │ │ ├── Pods-KJExpandableTableTree_Example.debug.xcconfig │ │ ├── Pods-KJExpandableTableTree_Example.modulemap │ │ └── Pods-KJExpandableTableTree_Example.release.xcconfig │ │ └── Pods-KJExpandableTableTree_Tests │ │ ├── Info.plist │ │ ├── Pods-KJExpandableTableTree_Tests-acknowledgements.markdown │ │ ├── Pods-KJExpandableTableTree_Tests-acknowledgements.plist │ │ ├── Pods-KJExpandableTableTree_Tests-dummy.m │ │ ├── Pods-KJExpandableTableTree_Tests-frameworks.sh │ │ ├── Pods-KJExpandableTableTree_Tests-resources.sh │ │ ├── Pods-KJExpandableTableTree_Tests-umbrella.h │ │ ├── Pods-KJExpandableTableTree_Tests.debug.xcconfig │ │ ├── Pods-KJExpandableTableTree_Tests.modulemap │ │ └── Pods-KJExpandableTableTree_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── Example_Static_Init_Using_Index ├── KJExpandableTableTree.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── KJExpandableTableTree-Example.xcscheme ├── KJExpandableTableTree.xcworkspace │ └── contents.xcworkspacedata ├── KJExpandableTableTree │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── 1st.imageset │ │ │ ├── 1st@2x.jpeg │ │ │ ├── 1st@3x.png │ │ │ └── Contents.json │ │ ├── 2nd.imageset │ │ │ ├── 2nd@2x.jpeg │ │ │ ├── 2nd@3x.png │ │ │ └── Contents.json │ │ ├── 3rd.imageset │ │ │ ├── 3rd@2x.jpeg │ │ │ ├── 3rd@3x.png │ │ │ └── Contents.json │ │ ├── 4th.imageset │ │ │ ├── 4th@2x.jpeg │ │ │ ├── 4th@3x.png │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── expand_me.imageset │ │ │ ├── Contents.json │ │ │ ├── expand_me@2x.png │ │ │ └── expand_me@3x.png │ │ ├── minus.imageset │ │ │ ├── Contents.json │ │ │ ├── minus@2x.png │ │ │ └── minus@3x.png │ │ ├── more_expansion.imageset │ │ │ ├── Contents.json │ │ │ ├── more_expansion@2x.png │ │ │ └── more_expansion@3x.png │ │ ├── more_expansion_2.imageset │ │ │ ├── Contents.json │ │ │ ├── more_expansion_2@2x.png │ │ │ └── more_expansion_2@3x.png │ │ └── plus.imageset │ │ │ ├── Contents.json │ │ │ ├── plus@2x.png │ │ │ └── plus@3x.png │ ├── Info.plist │ ├── TableviewCells │ │ ├── _dot1_TableViewCell.swift │ │ ├── _dot1_TableViewCell.xib │ │ ├── index_1-1_TableViewCell.swift │ │ ├── index_1-1_TableViewCell.xib │ │ ├── index_2_1_TableViewCell.swift │ │ ├── index_2_1_TableViewCell.xib │ │ ├── index_3_Leaf_TableViewCell.swift │ │ ├── index_3_Leaf_TableViewCell.xib │ │ ├── progressbarTableViewCell.swift │ │ ├── progressbarTableViewCell.xib │ │ ├── segmentTableViewCell.swift │ │ ├── segmentTableViewCell.xib │ │ ├── sliderTableViewCell.swift │ │ ├── sliderTableViewCell.xib │ │ ├── stepperTableViewCell.swift │ │ └── stepperTableViewCell.xib │ └── ViewController.swift ├── Podfile ├── Podfile.lock ├── Pods │ ├── Local Podspecs │ │ └── KJExpandableTableTree.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── KJExpandableTableTree │ │ ├── Info.plist │ │ ├── KJExpandableTableTree-dummy.m │ │ ├── KJExpandableTableTree-prefix.pch │ │ ├── KJExpandableTableTree-umbrella.h │ │ ├── KJExpandableTableTree.modulemap │ │ └── KJExpandableTableTree.xcconfig │ │ ├── Pods-KJExpandableTableTree_Example │ │ ├── Info.plist │ │ ├── Pods-KJExpandableTableTree_Example-acknowledgements.markdown │ │ ├── Pods-KJExpandableTableTree_Example-acknowledgements.plist │ │ ├── Pods-KJExpandableTableTree_Example-dummy.m │ │ ├── Pods-KJExpandableTableTree_Example-frameworks.sh │ │ ├── Pods-KJExpandableTableTree_Example-resources.sh │ │ ├── Pods-KJExpandableTableTree_Example-umbrella.h │ │ ├── Pods-KJExpandableTableTree_Example.debug.xcconfig │ │ ├── Pods-KJExpandableTableTree_Example.modulemap │ │ └── Pods-KJExpandableTableTree_Example.release.xcconfig │ │ └── Pods-KJExpandableTableTree_Tests │ │ ├── Info.plist │ │ ├── Pods-KJExpandableTableTree_Tests-acknowledgements.markdown │ │ ├── Pods-KJExpandableTableTree_Tests-acknowledgements.plist │ │ ├── Pods-KJExpandableTableTree_Tests-dummy.m │ │ ├── Pods-KJExpandableTableTree_Tests-frameworks.sh │ │ ├── Pods-KJExpandableTableTree_Tests-resources.sh │ │ ├── Pods-KJExpandableTableTree_Tests-umbrella.h │ │ ├── Pods-KJExpandableTableTree_Tests.debug.xcconfig │ │ ├── Pods-KJExpandableTableTree_Tests.modulemap │ │ └── Pods-KJExpandableTableTree_Tests.release.xcconfig └── Tests │ ├── Info.plist │ └── Tests.swift ├── Gifs ├── colorfull.gif ├── dynamic.gif ├── preview_landscape.gif ├── preview_portrait.gif ├── preview_portrait_custom.gif ├── static.gif └── staticIndexing.gif ├── KJExpandableTableTree.podspec ├── KJExpandableTableTree ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ └── KJTree.swift ├── LICENSE ├── README.md ├── Resources ├── LogoDark.png └── LogoDark2.png └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- 1 | # OS X 2 | .DS_Store 3 | 4 | # Xcode 5 | build/ 6 | *.pbxuser 7 | !default.pbxuser 8 | *.mode1v3 9 | !default.mode1v3 10 | *.mode2v3 11 | !default.mode2v3 12 | *.perspectivev3 13 | !default.perspectivev3 14 | xcuserdata/ 15 | *.xccheckout 16 | profile 17 | *.moved-aside 18 | DerivedData 19 | *.hmap 20 | *.ipa 21 | 22 | # Bundler 23 | .bundle 24 | 25 | Carthage 26 | # We recommend against adding the Pods directory to your .gitignore. However 27 | # you should judge for yourself, the pros and cons are mentioned at: 28 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 29 | # 30 | # Note: if you ignore the Pods directory, make sure to uncomment 31 | # `pod install` in .travis.yml 32 | # 33 | # Pods/ 34 | -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * http://www.objc.io/issue-6/travis-ci.html 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | osx_image: xcode7.3 6 | language: objective-c 7 | # cache: cocoapods 8 | # podfile: Example/Podfile 9 | # before_install: 10 | # - gem install cocoapods # Since Travis is not always on latest version 11 | # - pod install --project-directory=Example 12 | script: 13 | - set -o pipefail && xcodebuild test -workspace Example/KJExpandableTableTree.xcworkspace -scheme KJExpandableTableTree-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // KJExpandableTableTree 4 | // 5 | // Created by KiranJasvanee on 05/12/2017. 6 | // Copyright (c) 2017 KiranJasvanee. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 20 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/1st.imageset/1st@2x.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/1st.imageset/1st@2x.jpeg -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/1st.imageset/1st@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/1st.imageset/1st@3x.png -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/1st.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "1st@2x.jpeg", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "1st@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/2nd.imageset/2nd@2x.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/2nd.imageset/2nd@2x.jpeg -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/2nd.imageset/2nd@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/2nd.imageset/2nd@3x.png -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/2nd.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "2nd@2x.jpeg", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "2nd@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/3rd.imageset/3rd@2x.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/3rd.imageset/3rd@2x.jpeg -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/3rd.imageset/3rd@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/3rd.imageset/3rd@3x.png -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/3rd.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "3rd@2x.jpeg", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "3rd@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/4th.imageset/4th@2x.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/4th.imageset/4th@2x.jpeg -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/4th.imageset/4th@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/4th.imageset/4th@3x.png -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/4th.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "4th@2x.jpeg", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "4th@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | } 43 | ], 44 | "info" : { 45 | "version" : 1, 46 | "author" : "xcode" 47 | } 48 | } -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/minus.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "minus@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "minus@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/minus.imageset/minus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/minus.imageset/minus@2x.png -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/minus.imageset/minus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/minus.imageset/minus@3x.png -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/plus.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "plus@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "plus@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/plus.imageset/plus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/plus.imageset/plus@2x.png -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/plus.imageset/plus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Dynamic_Init/KJExpandableTableTree/Images.xcassets/plus.imageset/plus@3x.png -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/TableviewCells/Childs2ndStageTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Childs2ndStageTableViewCell.swift 3 | // Expandable3 4 | // 5 | // Created by MAC241 on 11/05/17. 6 | // Copyright © 2017 KiranJasvanee. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class Childs2ndStageTableViewCell: UITableViewCell { 12 | 13 | @IBOutlet weak var imageviewBackground: UIImageView! 14 | @IBOutlet weak var labelChildAtIndex: UILabel! 15 | 16 | @IBOutlet weak var buttonState: UIButton! 17 | override func awakeFromNib() { 18 | super.awakeFromNib() 19 | // Initialization code 20 | 21 | labelChildAtIndex.font = UIFont(name: "HelveticaNeue-Bold", size: 14) 22 | } 23 | 24 | func cellFillUp(indexParam: String) { 25 | 26 | 27 | labelChildAtIndex.textColor = UIColor.white 28 | labelChildAtIndex.text = "Child custom cell at index: \(indexParam)" 29 | } 30 | 31 | override func setSelected(_ selected: Bool, animated: Bool) { 32 | super.setSelected(selected, animated: animated) 33 | 34 | // Configure the view for the selected state 35 | } 36 | 37 | } 38 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/TableviewCells/Childs2ndStageTableViewCell.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 30 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/TableviewCells/Childs3rdStageTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Childs3rdStageTableViewCell.swift 3 | // Expandable3 4 | // 5 | // Created by MAC241 on 11/05/17. 6 | // Copyright © 2017 KiranJasvanee. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class Childs3rdStageTableViewCell: UITableViewCell { 12 | 13 | @IBOutlet weak var labelTitle: UILabel! 14 | @IBOutlet weak var labelSubTitle: UILabel! 15 | @IBOutlet weak var labelIndex: UILabel! 16 | 17 | @IBOutlet weak var buttonState: UIButton! 18 | override func awakeFromNib() { 19 | super.awakeFromNib() 20 | // Initialization code 21 | 22 | labelTitle.font = UIFont(name: "HelveticaNeue-Bold", size: 15) 23 | labelSubTitle.font = UIFont(name: "HelveticaNeue-Bold", size: 15) 24 | labelIndex.font = UIFont(name: "HelveticaNeue-Bold", size: 14) 25 | } 26 | 27 | func cellFillUp(indexParam: String) { 28 | labelTitle.textColor = UIColor.white 29 | labelSubTitle.textColor = UIColor.white 30 | labelIndex.textColor = UIColor.white 31 | 32 | labelTitle.text = "Child custom cell" 33 | labelSubTitle.text = "Index of:" 34 | labelIndex.text = indexParam 35 | } 36 | 37 | override func setSelected(_ selected: Bool, animated: Bool) { 38 | super.setSelected(selected, animated: animated) 39 | 40 | // Configure the view for the selected state 41 | } 42 | 43 | } 44 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/KJExpandableTableTree/TableviewCells/ParentsTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ParentsTableViewCell.swift 3 | // Expandable3 4 | // 5 | // Created by MAC241 on 11/05/17. 6 | // Copyright © 2017 KiranJasvanee. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ParentsTableViewCell: UITableViewCell { 12 | 13 | @IBOutlet weak var imageviewBackground: UIImageView! 14 | @IBOutlet weak var constraintLeadingLabelParent: NSLayoutConstraint! 15 | @IBOutlet weak var labelParentCell: UILabel! 16 | @IBOutlet weak var labelIndex: UILabel! 17 | 18 | @IBOutlet weak var buttonState: UIButton! 19 | 20 | override func awakeFromNib() { 21 | super.awakeFromNib() 22 | // Initialization code 23 | labelParentCell.font = UIFont(name: "HelveticaNeue-Bold", size: 15) 24 | labelIndex.font = UIFont(name: "HelveticaNeue-Bold", size: 14) 25 | } 26 | 27 | func cellFillUp(indexParam: String, tupleCount: NSInteger) { 28 | if tupleCount == 1 { 29 | labelParentCell.text = "Parent custom cell" 30 | imageviewBackground.image = UIImage(named: "1st") 31 | constraintLeadingLabelParent.constant = 16 32 | }else{ 33 | labelParentCell.text = "Child custom cell" 34 | imageviewBackground.image = nil 35 | constraintLeadingLabelParent.constant = 78 36 | } 37 | labelParentCell.textColor = UIColor.white 38 | labelIndex.textColor = UIColor.white 39 | 40 | labelIndex.text = "Index: \(indexParam)" 41 | } 42 | 43 | override func setSelected(_ selected: Bool, animated: Bool) { 44 | super.setSelected(selected, animated: animated) 45 | 46 | // Configure the view for the selected state 47 | } 48 | 49 | } 50 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'KJExpandableTableTree_Example' do 4 | pod 'KJExpandableTableTree', :path => '../' 5 | 6 | target 'KJExpandableTableTree_Tests' do 7 | inherit! :search_paths 8 | 9 | 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - KJExpandableTableTree (1.0.0) 3 | 4 | DEPENDENCIES: 5 | - KJExpandableTableTree (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | KJExpandableTableTree: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | KJExpandableTableTree: 0a499d4e55ad1cf9c3f302881ac1782f248a5c4b 13 | 14 | PODFILE CHECKSUM: 0fc9bec4e0eeca266961c79ec487a746bccc2876 15 | 16 | COCOAPODS: 1.2.1 17 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Local Podspecs/KJExpandableTableTree.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "KJExpandableTableTree", 3 | "version": "1.0.0", 4 | "summary": "A Expandable Tableview Cells", 5 | "description": "TODO: Add long description of the pod here.\nProvides a tableview cell expansion (expanding cell area - subcells'), you can expand cells up to level ∞-1. It's on Swift 3.0.", 6 | "homepage": "https://github.com/KiranJasvanee/KJExpandableTableTree", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "Kiran Jasvanee": "kiran.jasvanee@yahoo.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/KiranJasvanee/KJExpandableTableTree.git", 16 | "tag": "1.0.0" 17 | }, 18 | "platforms": { 19 | "ios": "8.0" 20 | }, 21 | "source_files": "KJExpandableTableTree/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - KJExpandableTableTree (1.0.0) 3 | 4 | DEPENDENCIES: 5 | - KJExpandableTableTree (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | KJExpandableTableTree: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | KJExpandableTableTree: 0a499d4e55ad1cf9c3f302881ac1782f248a5c4b 13 | 14 | PODFILE CHECKSUM: 0fc9bec4e0eeca266961c79ec487a746bccc2876 15 | 16 | COCOAPODS: 1.2.1 17 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/KJExpandableTableTree/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/KJExpandableTableTree/KJExpandableTableTree-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_KJExpandableTableTree : NSObject 3 | @end 4 | @implementation PodsDummy_KJExpandableTableTree 5 | @end 6 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/KJExpandableTableTree/KJExpandableTableTree-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/KJExpandableTableTree/KJExpandableTableTree-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double KJExpandableTableTreeVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char KJExpandableTableTreeVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/KJExpandableTableTree/KJExpandableTableTree.modulemap: -------------------------------------------------------------------------------- 1 | framework module KJExpandableTableTree { 2 | umbrella header "KJExpandableTableTree-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/KJExpandableTableTree/KJExpandableTableTree.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## KJExpandableTableTree 5 | 6 | Copyright (c) 2017 KiranJasvanee 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2017 KiranJasvanee <kiran.jasvanee@yahoo.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | License 38 | MIT 39 | Title 40 | KJExpandableTableTree 41 | Type 42 | PSGroupSpecifier 43 | 44 | 45 | FooterText 46 | Generated by CocoaPods - https://cocoapods.org 47 | Title 48 | 49 | Type 50 | PSGroupSpecifier 51 | 52 | 53 | StringsTable 54 | Acknowledgements 55 | Title 56 | Acknowledgements 57 | 58 | 59 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_KJExpandableTableTree_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_KJExpandableTableTree_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" 63 | 64 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 65 | code_sign_cmd="$code_sign_cmd &" 66 | fi 67 | echo "$code_sign_cmd" 68 | eval "$code_sign_cmd" 69 | fi 70 | } 71 | 72 | # Strip invalid architectures 73 | strip_invalid_archs() { 74 | binary="$1" 75 | # Get architectures for current file 76 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 77 | stripped="" 78 | for arch in $archs; do 79 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 80 | # Strip non-valid architectures in-place 81 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 82 | stripped="$stripped $arch" 83 | fi 84 | done 85 | if [[ "$stripped" ]]; then 86 | echo "Stripped $binary of architectures:$stripped" 87 | fi 88 | } 89 | 90 | 91 | if [[ "$CONFIGURATION" == "Debug" ]]; then 92 | install_framework "$BUILT_PRODUCTS_DIR/KJExpandableTableTree/KJExpandableTableTree.framework" 93 | fi 94 | if [[ "$CONFIGURATION" == "Release" ]]; then 95 | install_framework "$BUILT_PRODUCTS_DIR/KJExpandableTableTree/KJExpandableTableTree.framework" 96 | fi 97 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 98 | wait 99 | fi 100 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_KJExpandableTableTree_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_KJExpandableTableTree_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree/KJExpandableTableTree.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "KJExpandableTableTree" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_BUILD_DIR = $BUILD_DIR 9 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_KJExpandableTableTree_Example { 2 | umbrella header "Pods-KJExpandableTableTree_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree/KJExpandableTableTree.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "KJExpandableTableTree" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_BUILD_DIR = $BUILD_DIR 9 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_KJExpandableTableTree_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_KJExpandableTableTree_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" 63 | 64 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 65 | code_sign_cmd="$code_sign_cmd &" 66 | fi 67 | echo "$code_sign_cmd" 68 | eval "$code_sign_cmd" 69 | fi 70 | } 71 | 72 | # Strip invalid architectures 73 | strip_invalid_archs() { 74 | binary="$1" 75 | # Get architectures for current file 76 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 77 | stripped="" 78 | for arch in $archs; do 79 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 80 | # Strip non-valid architectures in-place 81 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 82 | stripped="$stripped $arch" 83 | fi 84 | done 85 | if [[ "$stripped" ]]; then 86 | echo "Stripped $binary of architectures:$stripped" 87 | fi 88 | } 89 | 90 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 91 | wait 92 | fi 93 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_KJExpandableTableTree_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_KJExpandableTableTree_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree/KJExpandableTableTree.framework/Headers" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_KJExpandableTableTree_Tests { 2 | umbrella header "Pods-KJExpandableTableTree_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree/KJExpandableTableTree.framework/Headers" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /Example_Dynamic_Init/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import XCTest 3 | import KJExpandableTableTree 4 | 5 | class Tests: XCTestCase { 6 | 7 | override func setUp() { 8 | super.setUp() 9 | // Put setup code here. This method is called before the invocation of each test method in the class. 10 | } 11 | 12 | override func tearDown() { 13 | // Put teardown code here. This method is called after the invocation of each test method in the class. 14 | super.tearDown() 15 | } 16 | 17 | func testExample() { 18 | // This is an example of a functional test case. 19 | XCTAssert(true, "Pass") 20 | } 21 | 22 | func testPerformanceExample() { 23 | // This is an example of a performance test case. 24 | self.measure() { 25 | // Put the code you want to measure the time of here. 26 | } 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // KJExpandableTableTree 4 | // 5 | // Created by KiranJasvanee on 05/12/2017. 6 | // Copyright (c) 2017 KiranJasvanee. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 20 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Images.xcassets/1st.imageset/1st@2x.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init/KJExpandableTableTree/Images.xcassets/1st.imageset/1st@2x.jpeg -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Images.xcassets/1st.imageset/1st@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init/KJExpandableTableTree/Images.xcassets/1st.imageset/1st@3x.png -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Images.xcassets/1st.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "1st@2x.jpeg", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "1st@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Images.xcassets/2nd.imageset/2nd@2x.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init/KJExpandableTableTree/Images.xcassets/2nd.imageset/2nd@2x.jpeg -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Images.xcassets/2nd.imageset/2nd@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init/KJExpandableTableTree/Images.xcassets/2nd.imageset/2nd@3x.png -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Images.xcassets/2nd.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "2nd@2x.jpeg", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "2nd@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Images.xcassets/3rd.imageset/3rd@2x.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init/KJExpandableTableTree/Images.xcassets/3rd.imageset/3rd@2x.jpeg -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Images.xcassets/3rd.imageset/3rd@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init/KJExpandableTableTree/Images.xcassets/3rd.imageset/3rd@3x.png -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Images.xcassets/3rd.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "3rd@2x.jpeg", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "3rd@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Images.xcassets/4th.imageset/4th@2x.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init/KJExpandableTableTree/Images.xcassets/4th.imageset/4th@2x.jpeg -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Images.xcassets/4th.imageset/4th@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init/KJExpandableTableTree/Images.xcassets/4th.imageset/4th@3x.png -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Images.xcassets/4th.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "4th@2x.jpeg", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "4th@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | } 43 | ], 44 | "info" : { 45 | "version" : 1, 46 | "author" : "xcode" 47 | } 48 | } -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Images.xcassets/minus.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "minus@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "minus@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Images.xcassets/minus.imageset/minus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init/KJExpandableTableTree/Images.xcassets/minus.imageset/minus@2x.png -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Images.xcassets/minus.imageset/minus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init/KJExpandableTableTree/Images.xcassets/minus.imageset/minus@3x.png -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Images.xcassets/plus.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "plus@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "plus@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Images.xcassets/plus.imageset/plus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init/KJExpandableTableTree/Images.xcassets/plus.imageset/plus@2x.png -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Images.xcassets/plus.imageset/plus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init/KJExpandableTableTree/Images.xcassets/plus.imageset/plus@3x.png -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/TableviewCells/Childs2ndStageTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Childs2ndStageTableViewCell.swift 3 | // Expandable3 4 | // 5 | // Created by MAC241 on 11/05/17. 6 | // Copyright © 2017 KiranJasvanee. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class Childs2ndStageTableViewCell: UITableViewCell { 12 | 13 | @IBOutlet weak var imageviewBackground: UIImageView! 14 | @IBOutlet weak var labelChildAtIndex: UILabel! 15 | 16 | @IBOutlet weak var buttonState: UIButton! 17 | override func awakeFromNib() { 18 | super.awakeFromNib() 19 | // Initialization code 20 | 21 | labelChildAtIndex.font = UIFont(name: "HelveticaNeue-Bold", size: 14) 22 | 23 | imageviewBackground.layer.cornerRadius = 2.0 24 | imageviewBackground.layer.masksToBounds = true 25 | } 26 | 27 | func cellFillUp(indexParam: String) { 28 | 29 | 30 | labelChildAtIndex.textColor = UIColor.white 31 | labelChildAtIndex.text = "Child custom cell at index: \(indexParam)" 32 | } 33 | 34 | override func setSelected(_ selected: Bool, animated: Bool) { 35 | super.setSelected(selected, animated: animated) 36 | 37 | // Configure the view for the selected state 38 | } 39 | 40 | } 41 | -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/TableviewCells/Childs3rdStageTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Childs3rdStageTableViewCell.swift 3 | // Expandable3 4 | // 5 | // Created by MAC241 on 11/05/17. 6 | // Copyright © 2017 KiranJasvanee. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class Childs3rdStageTableViewCell: UITableViewCell { 12 | 13 | @IBOutlet weak var imageviewBackground: UIImageView! 14 | @IBOutlet weak var constraintLabelTitle: NSLayoutConstraint! 15 | @IBOutlet weak var labelTitle: UILabel! 16 | @IBOutlet weak var labelSubTitle: UILabel! 17 | @IBOutlet weak var labelIndex: UILabel! 18 | 19 | @IBOutlet weak var buttonState: UIButton! 20 | override func awakeFromNib() { 21 | super.awakeFromNib() 22 | // Initialization code 23 | 24 | labelTitle.font = UIFont(name: "HelveticaNeue-Bold", size: 15) 25 | labelSubTitle.font = UIFont(name: "HelveticaNeue-Bold", size: 15) 26 | labelIndex.font = UIFont(name: "HelveticaNeue-Bold", size: 14) 27 | 28 | imageviewBackground.layer.cornerRadius = 2.0 29 | imageviewBackground.layer.masksToBounds = true 30 | } 31 | 32 | func cellFillUp(indexParam: String, tupleCount: NSInteger) { 33 | 34 | if tupleCount == 5 { 35 | imageviewBackground.backgroundColor = UIColor(red: 11.0/255.0, green: 186/255.0, blue: 255.0/255.0, alpha: 1.0) 36 | constraintLabelTitle.constant = 94 37 | }else if tupleCount == 6 { 38 | imageviewBackground.backgroundColor = UIColor(red: 11.0/255.0, green: 186/255.0, blue: 255.0/255.0, alpha: 1.0) 39 | constraintLabelTitle.constant = 112 40 | }else if tupleCount == 7 { 41 | imageviewBackground.backgroundColor = UIColor(red: 11.0/255.0, green: 186/255.0, blue: 255.0/255.0, alpha: 1.0) 42 | constraintLabelTitle.constant = 136 43 | }else{ 44 | imageviewBackground.backgroundColor = UIColor(red: 255.0/255.0, green: 105.0/255.0, blue: 105.0/255.0, alpha: 1.0) 45 | constraintLabelTitle.constant = 56 46 | } 47 | labelTitle.textColor = UIColor.white 48 | labelSubTitle.textColor = UIColor.white 49 | labelIndex.textColor = UIColor.white 50 | 51 | labelTitle.text = "Child custom cell" 52 | labelSubTitle.text = "Index of:" 53 | labelIndex.text = indexParam 54 | } 55 | 56 | override func setSelected(_ selected: Bool, animated: Bool) { 57 | super.setSelected(selected, animated: animated) 58 | 59 | // Configure the view for the selected state 60 | } 61 | 62 | } 63 | -------------------------------------------------------------------------------- /Example_Static_Init/KJExpandableTableTree/TableviewCells/ParentsTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ParentsTableViewCell.swift 3 | // Expandable3 4 | // 5 | // Created by MAC241 on 11/05/17. 6 | // Copyright © 2017 KiranJasvanee. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ParentsTableViewCell: UITableViewCell { 12 | 13 | @IBOutlet weak var imageviewBackground: UIImageView! 14 | @IBOutlet weak var constraintLeadingLabelParent: NSLayoutConstraint! 15 | @IBOutlet weak var labelParentCell: UILabel! 16 | @IBOutlet weak var labelIndex: UILabel! 17 | 18 | @IBOutlet weak var buttonState: UIButton! 19 | 20 | override func awakeFromNib() { 21 | super.awakeFromNib() 22 | // Initialization code 23 | labelParentCell.font = UIFont(name: "HelveticaNeue-Bold", size: 15) 24 | labelIndex.font = UIFont(name: "HelveticaNeue-Bold", size: 14) 25 | 26 | imageviewBackground.layer.cornerRadius = 2.0 27 | imageviewBackground.layer.masksToBounds = true 28 | } 29 | 30 | func cellFillUp(indexParam: String, tupleCount: NSInteger) { 31 | if tupleCount == 1 { 32 | labelParentCell.text = "Parent custom cell" 33 | imageviewBackground.backgroundColor = UIColor(red: 45.0/255.0, green: 138.0/255.0, blue: 139.0/255.0, alpha: 1.0) 34 | constraintLeadingLabelParent.constant = 16 35 | }else{ 36 | labelParentCell.text = "Child custom cell" 37 | imageviewBackground.backgroundColor = UIColor(red: 217.0/255.0, green: 127.0/255.0, blue: 37.0/255.0, alpha: 1.0) 38 | constraintLeadingLabelParent.constant = 78 39 | } 40 | labelParentCell.textColor = UIColor.white 41 | labelIndex.textColor = UIColor.white 42 | 43 | labelIndex.text = "Index: \(indexParam)" 44 | } 45 | 46 | override func setSelected(_ selected: Bool, animated: Bool) { 47 | super.setSelected(selected, animated: animated) 48 | 49 | // Configure the view for the selected state 50 | } 51 | 52 | } 53 | -------------------------------------------------------------------------------- /Example_Static_Init/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'KJExpandableTableTree_Example' do 4 | pod 'KJExpandableTableTree', :path => '../' 5 | 6 | target 'KJExpandableTableTree_Tests' do 7 | inherit! :search_paths 8 | 9 | end 10 | end 11 | -------------------------------------------------------------------------------- /Example_Static_Init/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - KJExpandableTableTree (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - KJExpandableTableTree (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | KJExpandableTableTree: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | KJExpandableTableTree: 107d2ed5ec2e18abad9060507aa3a0fe5aa4c7b2 13 | 14 | PODFILE CHECKSUM: a999bc52530b259e3c61506159afa50c3b3d3d27 15 | 16 | COCOAPODS: 1.2.1 17 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Local Podspecs/KJExpandableTableTree.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "KJExpandableTableTree", 3 | "version": "0.1.0", 4 | "summary": "A Expandable Tableview Cells", 5 | "description": "TODO: Add long description of the pod here.\nProvides a tableview cell expansion (expanding cell area - subcells'), you can expand cells up to level ∞-1. It's on Swift 3.0.", 6 | "homepage": "https://github.com/KiranJasvanee/KJExpandableTableTree", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "Kiran Jasvanee": "kiran.jasvanee@yahoo.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/KiranJasvanee/KJExpandableTableTree.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "8.0" 20 | }, 21 | "source_files": "KJExpandableTableTree/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - KJExpandableTableTree (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - KJExpandableTableTree (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | KJExpandableTableTree: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | KJExpandableTableTree: 107d2ed5ec2e18abad9060507aa3a0fe5aa4c7b2 13 | 14 | PODFILE CHECKSUM: a999bc52530b259e3c61506159afa50c3b3d3d27 15 | 16 | COCOAPODS: 1.2.1 17 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/KJExpandableTableTree/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/KJExpandableTableTree/KJExpandableTableTree-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_KJExpandableTableTree : NSObject 3 | @end 4 | @implementation PodsDummy_KJExpandableTableTree 5 | @end 6 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/KJExpandableTableTree/KJExpandableTableTree-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/KJExpandableTableTree/KJExpandableTableTree-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double KJExpandableTableTreeVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char KJExpandableTableTreeVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/KJExpandableTableTree/KJExpandableTableTree.modulemap: -------------------------------------------------------------------------------- 1 | framework module KJExpandableTableTree { 2 | umbrella header "KJExpandableTableTree-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/KJExpandableTableTree/KJExpandableTableTree.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## KJExpandableTableTree 5 | 6 | Copyright (c) 2017 KiranJasvanee 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2017 KiranJasvanee <kiran.jasvanee@yahoo.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | License 38 | MIT 39 | Title 40 | KJExpandableTableTree 41 | Type 42 | PSGroupSpecifier 43 | 44 | 45 | FooterText 46 | Generated by CocoaPods - https://cocoapods.org 47 | Title 48 | 49 | Type 50 | PSGroupSpecifier 51 | 52 | 53 | StringsTable 54 | Acknowledgements 55 | Title 56 | Acknowledgements 57 | 58 | 59 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_KJExpandableTableTree_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_KJExpandableTableTree_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" 63 | 64 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 65 | code_sign_cmd="$code_sign_cmd &" 66 | fi 67 | echo "$code_sign_cmd" 68 | eval "$code_sign_cmd" 69 | fi 70 | } 71 | 72 | # Strip invalid architectures 73 | strip_invalid_archs() { 74 | binary="$1" 75 | # Get architectures for current file 76 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 77 | stripped="" 78 | for arch in $archs; do 79 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 80 | # Strip non-valid architectures in-place 81 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 82 | stripped="$stripped $arch" 83 | fi 84 | done 85 | if [[ "$stripped" ]]; then 86 | echo "Stripped $binary of architectures:$stripped" 87 | fi 88 | } 89 | 90 | 91 | if [[ "$CONFIGURATION" == "Debug" ]]; then 92 | install_framework "$BUILT_PRODUCTS_DIR/KJExpandableTableTree/KJExpandableTableTree.framework" 93 | fi 94 | if [[ "$CONFIGURATION" == "Release" ]]; then 95 | install_framework "$BUILT_PRODUCTS_DIR/KJExpandableTableTree/KJExpandableTableTree.framework" 96 | fi 97 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 98 | wait 99 | fi 100 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_KJExpandableTableTree_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_KJExpandableTableTree_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree/KJExpandableTableTree.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "KJExpandableTableTree" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_BUILD_DIR = $BUILD_DIR 9 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_KJExpandableTableTree_Example { 2 | umbrella header "Pods-KJExpandableTableTree_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree/KJExpandableTableTree.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "KJExpandableTableTree" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_BUILD_DIR = $BUILD_DIR 9 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_KJExpandableTableTree_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_KJExpandableTableTree_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" 63 | 64 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 65 | code_sign_cmd="$code_sign_cmd &" 66 | fi 67 | echo "$code_sign_cmd" 68 | eval "$code_sign_cmd" 69 | fi 70 | } 71 | 72 | # Strip invalid architectures 73 | strip_invalid_archs() { 74 | binary="$1" 75 | # Get architectures for current file 76 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 77 | stripped="" 78 | for arch in $archs; do 79 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 80 | # Strip non-valid architectures in-place 81 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 82 | stripped="$stripped $arch" 83 | fi 84 | done 85 | if [[ "$stripped" ]]; then 86 | echo "Stripped $binary of architectures:$stripped" 87 | fi 88 | } 89 | 90 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 91 | wait 92 | fi 93 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_KJExpandableTableTree_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_KJExpandableTableTree_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree/KJExpandableTableTree.framework/Headers" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_KJExpandableTableTree_Tests { 2 | umbrella header "Pods-KJExpandableTableTree_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example_Static_Init/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree/KJExpandableTableTree.framework/Headers" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example_Static_Init/Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /Example_Static_Init/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import XCTest 3 | import KJExpandableTableTree 4 | 5 | class Tests: XCTestCase { 6 | 7 | override func setUp() { 8 | super.setUp() 9 | // Put setup code here. This method is called before the invocation of each test method in the class. 10 | } 11 | 12 | override func tearDown() { 13 | // Put teardown code here. This method is called after the invocation of each test method in the class. 14 | super.tearDown() 15 | } 16 | 17 | func testExample() { 18 | // This is an example of a functional test case. 19 | XCTAssert(true, "Pass") 20 | } 21 | 22 | func testPerformanceExample() { 23 | // This is an example of a performance test case. 24 | self.measure() { 25 | // Put the code you want to measure the time of here. 26 | } 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // KJExpandableTableTree 4 | // 5 | // Created by KiranJasvanee on 05/12/2017. 6 | // Copyright (c) 2017 KiranJasvanee. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 20 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/1st.imageset/1st@2x.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/1st.imageset/1st@2x.jpeg -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/1st.imageset/1st@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/1st.imageset/1st@3x.png -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/1st.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "1st@2x.jpeg", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "1st@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/2nd.imageset/2nd@2x.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/2nd.imageset/2nd@2x.jpeg -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/2nd.imageset/2nd@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/2nd.imageset/2nd@3x.png -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/2nd.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "2nd@2x.jpeg", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "2nd@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/3rd.imageset/3rd@2x.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/3rd.imageset/3rd@2x.jpeg -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/3rd.imageset/3rd@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/3rd.imageset/3rd@3x.png -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/3rd.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "3rd@2x.jpeg", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "3rd@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/4th.imageset/4th@2x.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/4th.imageset/4th@2x.jpeg -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/4th.imageset/4th@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/4th.imageset/4th@3x.png -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/4th.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "4th@2x.jpeg", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "4th@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | } 43 | ], 44 | "info" : { 45 | "version" : 1, 46 | "author" : "xcode" 47 | } 48 | } -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/expand_me.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "expand_me@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "expand_me@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/expand_me.imageset/expand_me@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/expand_me.imageset/expand_me@2x.png -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/expand_me.imageset/expand_me@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/expand_me.imageset/expand_me@3x.png -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/minus.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "minus@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "minus@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/minus.imageset/minus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/minus.imageset/minus@2x.png -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/minus.imageset/minus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/minus.imageset/minus@3x.png -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/more_expansion.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "more_expansion@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "more_expansion@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/more_expansion.imageset/more_expansion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/more_expansion.imageset/more_expansion@2x.png -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/more_expansion.imageset/more_expansion@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/more_expansion.imageset/more_expansion@3x.png -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/more_expansion_2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "more_expansion_2@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "more_expansion_2@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/more_expansion_2.imageset/more_expansion_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/more_expansion_2.imageset/more_expansion_2@2x.png -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/more_expansion_2.imageset/more_expansion_2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/more_expansion_2.imageset/more_expansion_2@3x.png -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/plus.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "plus@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "plus@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/plus.imageset/plus@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/plus.imageset/plus@2x.png -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/plus.imageset/plus@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Example_Static_Init_Using_Index/KJExpandableTableTree/Images.xcassets/plus.imageset/plus@3x.png -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/TableviewCells/_dot1_TableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // 1dot1_TableViewCell.swift 3 | // KJExpandableTableTree 4 | // 5 | // Created by MAC241 on 12/05/17. 6 | // Copyright © 2017 CocoaPods. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class _dot1_TableViewCell: UITableViewCell { 12 | 13 | @IBOutlet weak var labelIndex: UILabel! 14 | @IBOutlet weak var buttonState: UIButton! 15 | 16 | override func awakeFromNib() { 17 | super.awakeFromNib() 18 | // Initialization code 19 | 20 | labelIndex.font = UIFont(name: "HelveticaNeue-Bold", size: 14) 21 | } 22 | 23 | func cellFillUp(indexParam: String) { 24 | 25 | labelIndex.text = "Custom cell - Index: \(indexParam)" 26 | } 27 | 28 | override func setSelected(_ selected: Bool, animated: Bool) { 29 | super.setSelected(selected, animated: animated) 30 | 31 | // Configure the view for the selected state 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/TableviewCells/_dot1_TableViewCell.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 27 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/TableviewCells/index_1-1_TableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // index_1-1_TableViewCell.swift 3 | // KJExpandableTableTree 4 | // 5 | // Created by MAC241 on 12/05/17. 6 | // Copyright © 2017 CocoaPods. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class index_1_1_TableViewCell: UITableViewCell { 12 | 13 | @IBOutlet weak var labelIndex: UILabel! 14 | override func awakeFromNib() { 15 | super.awakeFromNib() 16 | // Initialization code 17 | 18 | labelIndex.font = UIFont(name: "HelveticaNeue-Bold", size: 14) 19 | } 20 | 21 | func cellFillUp(indexParam: String) { 22 | 23 | labelIndex.text = "Index: \(indexParam)" 24 | } 25 | 26 | override func setSelected(_ selected: Bool, animated: Bool) { 27 | super.setSelected(selected, animated: animated) 28 | 29 | // Configure the view for the selected state 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/TableviewCells/index_1-1_TableViewCell.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/TableviewCells/index_2_1_TableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // index_2_1_TableViewCell.swift 3 | // KJExpandableTableTree 4 | // 5 | // Created by MAC241 on 12/05/17. 6 | // Copyright © 2017 CocoaPods. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class index_2_1_TableViewCell: UITableViewCell { 12 | 13 | @IBOutlet weak var imageviewBackground: UIImageView! 14 | @IBOutlet weak var buttonState: UIButton! 15 | 16 | override func awakeFromNib() { 17 | super.awakeFromNib() 18 | // Initialization code 19 | } 20 | 21 | override func setSelected(_ selected: Bool, animated: Bool) { 22 | super.setSelected(selected, animated: animated) 23 | 24 | // Configure the view for the selected state 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/TableviewCells/index_2_1_TableViewCell.xib: -------------------------------------------------------------------------------- 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 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/TableviewCells/index_3_Leaf_TableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // index_3_Leaf_TableViewCell.swift 3 | // KJExpandableTableTree 4 | // 5 | // Created by MAC241 on 12/05/17. 6 | // Copyright © 2017 CocoaPods. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class index_3_Leaf_TableViewCell: UITableViewCell { 12 | 13 | @IBOutlet weak var labelIndex: UILabel! 14 | 15 | override func awakeFromNib() { 16 | super.awakeFromNib() 17 | // Initialization code 18 | labelIndex.font = UIFont(name: "HelveticaNeue-Bold", size: 14) 19 | } 20 | 21 | override func setSelected(_ selected: Bool, animated: Bool) { 22 | super.setSelected(selected, animated: animated) 23 | 24 | // Configure the view for the selected state 25 | } 26 | 27 | } 28 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/TableviewCells/index_3_Leaf_TableViewCell.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/TableviewCells/progressbarTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // progressbarTableViewCell.swift 3 | // KJExpandableTableTree 4 | // 5 | // Created by MAC241 on 12/05/17. 6 | // Copyright © 2017 CocoaPods. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class progressbarTableViewCell: UITableViewCell { 12 | 13 | override func awakeFromNib() { 14 | super.awakeFromNib() 15 | // Initialization code 16 | } 17 | 18 | override func setSelected(_ selected: Bool, animated: Bool) { 19 | super.setSelected(selected, animated: animated) 20 | 21 | // Configure the view for the selected state 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/TableviewCells/progressbarTableViewCell.xib: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/TableviewCells/segmentTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // segmentTableViewCell.swift 3 | // KJExpandableTableTree 4 | // 5 | // Created by MAC241 on 12/05/17. 6 | // Copyright © 2017 CocoaPods. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class segmentTableViewCell: UITableViewCell { 12 | 13 | override func awakeFromNib() { 14 | super.awakeFromNib() 15 | // Initialization code 16 | } 17 | 18 | override func setSelected(_ selected: Bool, animated: Bool) { 19 | super.setSelected(selected, animated: animated) 20 | 21 | // Configure the view for the selected state 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/TableviewCells/segmentTableViewCell.xib: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/TableviewCells/sliderTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // sliderTableViewCell.swift 3 | // KJExpandableTableTree 4 | // 5 | // Created by MAC241 on 12/05/17. 6 | // Copyright © 2017 CocoaPods. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class sliderTableViewCell: UITableViewCell { 12 | 13 | override func awakeFromNib() { 14 | super.awakeFromNib() 15 | // Initialization code 16 | } 17 | 18 | override func setSelected(_ selected: Bool, animated: Bool) { 19 | super.setSelected(selected, animated: animated) 20 | 21 | // Configure the view for the selected state 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/TableviewCells/sliderTableViewCell.xib: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/TableviewCells/stepperTableViewCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // stepperTableViewCell.swift 3 | // KJExpandableTableTree 4 | // 5 | // Created by MAC241 on 12/05/17. 6 | // Copyright © 2017 CocoaPods. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class stepperTableViewCell: UITableViewCell { 12 | 13 | override func awakeFromNib() { 14 | super.awakeFromNib() 15 | // Initialization code 16 | } 17 | 18 | override func setSelected(_ selected: Bool, animated: Bool) { 19 | super.setSelected(selected, animated: animated) 20 | 21 | // Configure the view for the selected state 22 | } 23 | 24 | } 25 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/KJExpandableTableTree/TableviewCells/stepperTableViewCell.xib: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'KJExpandableTableTree_Example' do 4 | pod 'KJExpandableTableTree', :path => '../' 5 | 6 | target 'KJExpandableTableTree_Tests' do 7 | inherit! :search_paths 8 | 9 | 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - KJExpandableTableTree (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - KJExpandableTableTree (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | KJExpandableTableTree: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | KJExpandableTableTree: 107d2ed5ec2e18abad9060507aa3a0fe5aa4c7b2 13 | 14 | PODFILE CHECKSUM: 0fc9bec4e0eeca266961c79ec487a746bccc2876 15 | 16 | COCOAPODS: 1.2.1 17 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Local Podspecs/KJExpandableTableTree.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "KJExpandableTableTree", 3 | "version": "0.1.0", 4 | "summary": "A Expandable Tableview Cells", 5 | "description": "TODO: Add long description of the pod here.\nProvides a tableview cell expansion (expanding cell area - subcells'), you can expand cells up to level ∞-1. It's on Swift 3.0.", 6 | "homepage": "https://github.com/KiranJasvanee/KJExpandableTableTree", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "Kiran Jasvanee": "kiran.jasvanee@yahoo.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/KiranJasvanee/KJExpandableTableTree.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "8.0" 20 | }, 21 | "source_files": "KJExpandableTableTree/Classes/**/*" 22 | } 23 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - KJExpandableTableTree (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - KJExpandableTableTree (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | KJExpandableTableTree: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | KJExpandableTableTree: 107d2ed5ec2e18abad9060507aa3a0fe5aa4c7b2 13 | 14 | PODFILE CHECKSUM: 0fc9bec4e0eeca266961c79ec487a746bccc2876 15 | 16 | COCOAPODS: 1.2.1 17 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/KJExpandableTableTree/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/KJExpandableTableTree/KJExpandableTableTree-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_KJExpandableTableTree : NSObject 3 | @end 4 | @implementation PodsDummy_KJExpandableTableTree 5 | @end 6 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/KJExpandableTableTree/KJExpandableTableTree-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/KJExpandableTableTree/KJExpandableTableTree-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double KJExpandableTableTreeVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char KJExpandableTableTreeVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/KJExpandableTableTree/KJExpandableTableTree.modulemap: -------------------------------------------------------------------------------- 1 | framework module KJExpandableTableTree { 2 | umbrella header "KJExpandableTableTree-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/KJExpandableTableTree/KJExpandableTableTree.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" 4 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_ROOT = ${SRCROOT} 8 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 9 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 10 | SKIP_INSTALL = YES 11 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## KJExpandableTableTree 5 | 6 | Copyright (c) 2017 KiranJasvanee 7 | 8 | Permission is hereby granted, free of charge, to any person obtaining a copy 9 | of this software and associated documentation files (the "Software"), to deal 10 | in the Software without restriction, including without limitation the rights 11 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 12 | copies of the Software, and to permit persons to whom the Software is 13 | furnished to do so, subject to the following conditions: 14 | 15 | The above copyright notice and this permission notice shall be included in 16 | all copies or substantial portions of the Software. 17 | 18 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 19 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 20 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 21 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 22 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 23 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 24 | THE SOFTWARE. 25 | 26 | Generated by CocoaPods - https://cocoapods.org 27 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Copyright (c) 2017 KiranJasvanee <kiran.jasvanee@yahoo.com> 18 | 19 | Permission is hereby granted, free of charge, to any person obtaining a copy 20 | of this software and associated documentation files (the "Software"), to deal 21 | in the Software without restriction, including without limitation the rights 22 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 23 | copies of the Software, and to permit persons to whom the Software is 24 | furnished to do so, subject to the following conditions: 25 | 26 | The above copyright notice and this permission notice shall be included in 27 | all copies or substantial portions of the Software. 28 | 29 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 30 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 31 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 32 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 33 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 34 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 35 | THE SOFTWARE. 36 | 37 | License 38 | MIT 39 | Title 40 | KJExpandableTableTree 41 | Type 42 | PSGroupSpecifier 43 | 44 | 45 | FooterText 46 | Generated by CocoaPods - https://cocoapods.org 47 | Title 48 | 49 | Type 50 | PSGroupSpecifier 51 | 52 | 53 | StringsTable 54 | Acknowledgements 55 | Title 56 | Acknowledgements 57 | 58 | 59 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_KJExpandableTableTree_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_KJExpandableTableTree_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" 63 | 64 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 65 | code_sign_cmd="$code_sign_cmd &" 66 | fi 67 | echo "$code_sign_cmd" 68 | eval "$code_sign_cmd" 69 | fi 70 | } 71 | 72 | # Strip invalid architectures 73 | strip_invalid_archs() { 74 | binary="$1" 75 | # Get architectures for current file 76 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 77 | stripped="" 78 | for arch in $archs; do 79 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 80 | # Strip non-valid architectures in-place 81 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 82 | stripped="$stripped $arch" 83 | fi 84 | done 85 | if [[ "$stripped" ]]; then 86 | echo "Stripped $binary of architectures:$stripped" 87 | fi 88 | } 89 | 90 | 91 | if [[ "$CONFIGURATION" == "Debug" ]]; then 92 | install_framework "$BUILT_PRODUCTS_DIR/KJExpandableTableTree/KJExpandableTableTree.framework" 93 | fi 94 | if [[ "$CONFIGURATION" == "Release" ]]; then 95 | install_framework "$BUILT_PRODUCTS_DIR/KJExpandableTableTree/KJExpandableTableTree.framework" 96 | fi 97 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 98 | wait 99 | fi 100 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_KJExpandableTableTree_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_KJExpandableTableTree_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree/KJExpandableTableTree.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "KJExpandableTableTree" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_BUILD_DIR = $BUILD_DIR 9 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_KJExpandableTableTree_Example { 2 | umbrella header "Pods-KJExpandableTableTree_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/Pods-KJExpandableTableTree_Example/Pods-KJExpandableTableTree_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 5 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree/KJExpandableTableTree.framework/Headers" 6 | OTHER_LDFLAGS = $(inherited) -framework "KJExpandableTableTree" 7 | OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" 8 | PODS_BUILD_DIR = $BUILD_DIR 9 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 10 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 11 | PODS_ROOT = ${SRCROOT}/Pods 12 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests-acknowledgements.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreferenceSpecifiers 6 | 7 | 8 | FooterText 9 | This application makes use of the following third party libraries: 10 | Title 11 | Acknowledgements 12 | Type 13 | PSGroupSpecifier 14 | 15 | 16 | FooterText 17 | Generated by CocoaPods - https://cocoapods.org 18 | Title 19 | 20 | Type 21 | PSGroupSpecifier 22 | 23 | 24 | StringsTable 25 | Acknowledgements 26 | Title 27 | Acknowledgements 28 | 29 | 30 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_KJExpandableTableTree_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_KJExpandableTableTree_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | 4 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 5 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 6 | 7 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 8 | 9 | install_framework() 10 | { 11 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 12 | local source="${BUILT_PRODUCTS_DIR}/$1" 13 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 14 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 15 | elif [ -r "$1" ]; then 16 | local source="$1" 17 | fi 18 | 19 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 20 | 21 | if [ -L "${source}" ]; then 22 | echo "Symlinked..." 23 | source="$(readlink "${source}")" 24 | fi 25 | 26 | # use filter instead of exclude so missing patterns dont' throw errors 27 | echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 28 | rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 29 | 30 | local basename 31 | basename="$(basename -s .framework "$1")" 32 | binary="${destination}/${basename}.framework/${basename}" 33 | if ! [ -r "$binary" ]; then 34 | binary="${destination}/${basename}" 35 | fi 36 | 37 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 38 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 39 | strip_invalid_archs "$binary" 40 | fi 41 | 42 | # Resign the code if required by the build settings to avoid unstable apps 43 | code_sign_if_enabled "${destination}/$(basename "$1")" 44 | 45 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 46 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 47 | local swift_runtime_libs 48 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) 49 | for lib in $swift_runtime_libs; do 50 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 51 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 52 | code_sign_if_enabled "${destination}/${lib}" 53 | done 54 | fi 55 | } 56 | 57 | # Signs a framework with the provided identity 58 | code_sign_if_enabled() { 59 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 60 | # Use the current code_sign_identitiy 61 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 62 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements '$1'" 63 | 64 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 65 | code_sign_cmd="$code_sign_cmd &" 66 | fi 67 | echo "$code_sign_cmd" 68 | eval "$code_sign_cmd" 69 | fi 70 | } 71 | 72 | # Strip invalid architectures 73 | strip_invalid_archs() { 74 | binary="$1" 75 | # Get architectures for current file 76 | archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" 77 | stripped="" 78 | for arch in $archs; do 79 | if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then 80 | # Strip non-valid architectures in-place 81 | lipo -remove "$arch" -output "$binary" "$binary" || exit 1 82 | stripped="$stripped $arch" 83 | fi 84 | done 85 | if [[ "$stripped" ]]; then 86 | echo "Stripped $binary of architectures:$stripped" 87 | fi 88 | } 89 | 90 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 91 | wait 92 | fi 93 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #else 4 | #ifndef FOUNDATION_EXPORT 5 | #if defined(__cplusplus) 6 | #define FOUNDATION_EXPORT extern "C" 7 | #else 8 | #define FOUNDATION_EXPORT extern 9 | #endif 10 | #endif 11 | #endif 12 | 13 | 14 | FOUNDATION_EXPORT double Pods_KJExpandableTableTree_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_KJExpandableTableTree_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree/KJExpandableTableTree.framework/Headers" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_KJExpandableTableTree_Tests { 2 | umbrella header "Pods-KJExpandableTableTree_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Pods/Target Support Files/Pods-KJExpandableTableTree_Tests/Pods-KJExpandableTableTree_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 4 | OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/KJExpandableTableTree/KJExpandableTableTree.framework/Headers" 5 | PODS_BUILD_DIR = $BUILD_DIR 6 | PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 7 | PODS_PODFILE_DIR_PATH = ${SRCROOT}/. 8 | PODS_ROOT = ${SRCROOT}/Pods 9 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /Example_Static_Init_Using_Index/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import XCTest 3 | import KJExpandableTableTree 4 | 5 | class Tests: XCTestCase { 6 | 7 | override func setUp() { 8 | super.setUp() 9 | // Put setup code here. This method is called before the invocation of each test method in the class. 10 | } 11 | 12 | override func tearDown() { 13 | // Put teardown code here. This method is called after the invocation of each test method in the class. 14 | super.tearDown() 15 | } 16 | 17 | func testExample() { 18 | // This is an example of a functional test case. 19 | XCTAssert(true, "Pass") 20 | } 21 | 22 | func testPerformanceExample() { 23 | // This is an example of a performance test case. 24 | self.measure() { 25 | // Put the code you want to measure the time of here. 26 | } 27 | } 28 | 29 | } 30 | -------------------------------------------------------------------------------- /Gifs/colorfull.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Gifs/colorfull.gif -------------------------------------------------------------------------------- /Gifs/dynamic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Gifs/dynamic.gif -------------------------------------------------------------------------------- /Gifs/preview_landscape.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Gifs/preview_landscape.gif -------------------------------------------------------------------------------- /Gifs/preview_portrait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Gifs/preview_portrait.gif -------------------------------------------------------------------------------- /Gifs/preview_portrait_custom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Gifs/preview_portrait_custom.gif -------------------------------------------------------------------------------- /Gifs/static.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Gifs/static.gif -------------------------------------------------------------------------------- /Gifs/staticIndexing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Gifs/staticIndexing.gif -------------------------------------------------------------------------------- /KJExpandableTableTree.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint KJExpandableTableTree.podspec' to ensure this is a 3 | # valid spec before submitting. 4 | # 5 | # Any lines starting with a # are optional, but their use is encouraged 6 | # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = 'KJExpandableTableTree' 11 | s.version = '1.2.0' 12 | s.summary = 'A Expandable Tableview Cells' 13 | 14 | # This description is used to generate tags and improve search results. 15 | # * Think: What does it do? Why did you write it? What is the focus? 16 | # * Try to keep it short, snappy and to the point. 17 | # * Write the description between the DESC delimiters below. 18 | # * Finally, don't worry about the indent, CocoaPods strips it! 19 | 20 | s.description = <<-DESC 21 | TODO: Add long description of the pod here. 22 | Provides a tableview cell expansion (expanding cell area - subcells'), you can expand cells up to level ∞-1. It's on Swift 4.2. 23 | DESC 24 | 25 | s.homepage = 'https://github.com/KiranJasvanee/KJExpandableTableTree' 26 | # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' 27 | s.license = { :type => 'MIT', :file => 'LICENSE' } 28 | s.author = { 'Kiran Jasvanee' => 'kiran.jasvanee@yahoo.com' } 29 | s.source = { :git => 'https://github.com/KiranJasvanee/KJExpandableTableTree.git', :tag => s.version.to_s } 30 | # s.social_media_url = 'https://twitter.com/' 31 | 32 | s.ios.deployment_target = '8.0' 33 | 34 | s.source_files = 'KJExpandableTableTree/Classes/**/*' 35 | 36 | # s.resource_bundles = { 37 | # 'KJExpandableTableTree' => ['KJExpandableTableTree/Assets/*.png'] 38 | # } 39 | 40 | # s.public_header_files = 'Pod/Classes/**/*.h' 41 | # s.frameworks = 'UIKit', 'MapKit' 42 | # s.dependency 'AFNetworking', '~> 2.3' 43 | end 44 | -------------------------------------------------------------------------------- /KJExpandableTableTree/Assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/KJExpandableTableTree/Assets/.gitkeep -------------------------------------------------------------------------------- /KJExpandableTableTree/Classes/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/KJExpandableTableTree/Classes/.gitkeep -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017 KiranJasvanee 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 | -------------------------------------------------------------------------------- /Resources/LogoDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Resources/LogoDark.png -------------------------------------------------------------------------------- /Resources/LogoDark2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KiranJasvanee/InfinityExpandableTableTree/fda49d1e00ee3f34861adace304f93f5f7d60e21/Resources/LogoDark2.png -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------