├── SSCustomSideMenu └── Assets │ └── .gitkeep ├── Sources └── SSCustomSideMenu │ ├── Classes │ ├── .gitkeep │ ├── Enums.swift │ ├── Protocols.swift │ ├── SSMenuButton.swift │ ├── Dynamic.swift │ ├── Extensions.swift │ ├── SSMenuTableView.swift │ ├── SSMenuCell.swift │ ├── Config.swift │ └── SSSideMenuContainerViewController.swift │ └── SSCustomSideMenu.swift ├── _Pods.xcodeproj ├── Example ├── SSCustomSideMenu │ ├── Images.xcassets │ │ ├── Contents.json │ │ ├── first.imageset │ │ │ ├── events.pdf │ │ │ └── Contents.json │ │ ├── logout.imageset │ │ │ ├── logout.pdf │ │ │ └── Contents.json │ │ ├── second.imageset │ │ │ ├── friends.pdf │ │ │ └── Contents.json │ │ ├── third.imageset │ │ │ ├── settings.pdf │ │ │ └── Contents.json │ │ ├── buttonColor.colorset │ │ │ └── Contents.json │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── AppDelegate.swift │ ├── ViewController.swift │ └── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard ├── Pods │ ├── Target Support Files │ │ ├── SSCustomSideMenu │ │ │ ├── SSCustomSideMenu.modulemap │ │ │ ├── SSCustomSideMenu-dummy.m │ │ │ ├── SSCustomSideMenu-prefix.pch │ │ │ ├── SSCustomSideMenu-umbrella.h │ │ │ ├── SSCustomSideMenu.xcconfig │ │ │ ├── SSCustomSideMenu.debug.xcconfig │ │ │ ├── SSCustomSideMenu.release.xcconfig │ │ │ └── SSCustomSideMenu-Info.plist │ │ ├── Pods-SSCustomSideMenu_Tests │ │ │ ├── Pods-SSCustomSideMenu_Tests-acknowledgements.markdown │ │ │ ├── Pods-SSCustomSideMenu_Tests.modulemap │ │ │ ├── Pods-SSCustomSideMenu_Tests-dummy.m │ │ │ ├── Pods-SSCustomSideMenu_Tests-umbrella.h │ │ │ ├── Pods-SSCustomSideMenu_Tests.debug.xcconfig │ │ │ ├── Pods-SSCustomSideMenu_Tests.release.xcconfig │ │ │ ├── Pods-SSCustomSideMenu_Tests-Info.plist │ │ │ └── Pods-SSCustomSideMenu_Tests-acknowledgements.plist │ │ └── Pods-SSCustomSideMenu_Example │ │ │ ├── Pods-SSCustomSideMenu_Example.modulemap │ │ │ ├── Pods-SSCustomSideMenu_Example-dummy.m │ │ │ ├── Pods-SSCustomSideMenu_Example-umbrella.h │ │ │ ├── Pods-SSCustomSideMenu_Example.debug.xcconfig │ │ │ ├── Pods-SSCustomSideMenu_Example.release.xcconfig │ │ │ ├── Pods-SSCustomSideMenu_Example-Info.plist │ │ │ ├── Pods-SSCustomSideMenu_Example-acknowledgements.markdown │ │ │ ├── Pods-SSCustomSideMenu_Example-acknowledgements.plist │ │ │ └── Pods-SSCustomSideMenu_Example-frameworks.sh │ ├── Manifest.lock │ ├── Local Podspecs │ │ └── SSCustomSideMenu.podspec.json │ └── Pods.xcodeproj │ │ └── project.pbxproj ├── Podfile ├── SSCustomSideMenu.xcodeproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── SSCustomSideMenu-Example.xcscheme │ └── project.pbxproj ├── SSCustomSideMenu.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Podfile.lock └── Tests │ ├── Info.plist │ └── Tests.swift ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── contents.xcworkspacedata ├── .travis.yml ├── .gitignore ├── Package.swift ├── LICENSE ├── SSCustomSideMenu.podspec └── README.md /SSCustomSideMenu/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sources/SSCustomSideMenu/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj -------------------------------------------------------------------------------- /Example/SSCustomSideMenu/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Sources/SSCustomSideMenu/SSCustomSideMenu.swift: -------------------------------------------------------------------------------- 1 | public struct SSCustomSideMenu { 2 | public private(set) var text = "Hello, World!" 3 | 4 | public init() { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Example/SSCustomSideMenu/Images.xcassets/first.imageset/events.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSCustomSideMenu/HEAD/Example/SSCustomSideMenu/Images.xcassets/first.imageset/events.pdf -------------------------------------------------------------------------------- /Example/SSCustomSideMenu/Images.xcassets/logout.imageset/logout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSCustomSideMenu/HEAD/Example/SSCustomSideMenu/Images.xcassets/logout.imageset/logout.pdf -------------------------------------------------------------------------------- /Example/SSCustomSideMenu/Images.xcassets/second.imageset/friends.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSCustomSideMenu/HEAD/Example/SSCustomSideMenu/Images.xcassets/second.imageset/friends.pdf -------------------------------------------------------------------------------- /Example/SSCustomSideMenu/Images.xcassets/third.imageset/settings.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/SSCustomSideMenu/HEAD/Example/SSCustomSideMenu/Images.xcassets/third.imageset/settings.pdf -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SSCustomSideMenu/SSCustomSideMenu.modulemap: -------------------------------------------------------------------------------- 1 | framework module SSCustomSideMenu { 2 | umbrella header "SSCustomSideMenu-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SSCustomSideMenu/SSCustomSideMenu-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SSCustomSideMenu : NSObject 3 | @end 4 | @implementation PodsDummy_SSCustomSideMenu 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | 3 | target 'SSCustomSideMenu_Example' do 4 | pod 'SSCustomSideMenu', :path => '../' 5 | 6 | target 'SSCustomSideMenu_Tests' do 7 | inherit! :search_paths 8 | 9 | 10 | end 11 | end 12 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SSCustomSideMenu_Tests/Pods-SSCustomSideMenu_Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | Generated by CocoaPods - https://cocoapods.org 4 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SSCustomSideMenu_Tests/Pods-SSCustomSideMenu_Tests.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_SSCustomSideMenu_Tests { 2 | umbrella header "Pods-SSCustomSideMenu_Tests-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/SSCustomSideMenu.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SSCustomSideMenu_Example/Pods-SSCustomSideMenu_Example.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_SSCustomSideMenu_Example { 2 | umbrella header "Pods-SSCustomSideMenu_Example-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SSCustomSideMenu_Tests/Pods-SSCustomSideMenu_Tests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SSCustomSideMenu_Tests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SSCustomSideMenu_Tests 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SSCustomSideMenu_Example/Pods-SSCustomSideMenu_Example-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_SSCustomSideMenu_Example : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_SSCustomSideMenu_Example 5 | @end 6 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SSCustomSideMenu/SSCustomSideMenu-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/SSCustomSideMenu.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Example/SSCustomSideMenu.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - SSCustomSideMenu (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - SSCustomSideMenu (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | SSCustomSideMenu: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | SSCustomSideMenu: 006f3654e428bab4ca94662adf15b910f4ff1be1 13 | 14 | PODFILE CHECKSUM: bf30120adbfd86343225efcbf6a2c2bb3186a9db 15 | 16 | COCOAPODS: 1.9.1 17 | -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- 1 | PODS: 2 | - SSCustomSideMenu (0.1.0) 3 | 4 | DEPENDENCIES: 5 | - SSCustomSideMenu (from `../`) 6 | 7 | EXTERNAL SOURCES: 8 | SSCustomSideMenu: 9 | :path: "../" 10 | 11 | SPEC CHECKSUMS: 12 | SSCustomSideMenu: 006f3654e428bab4ca94662adf15b910f4ff1be1 13 | 14 | PODFILE CHECKSUM: bf30120adbfd86343225efcbf6a2c2bb3186a9db 15 | 16 | COCOAPODS: 1.9.1 17 | -------------------------------------------------------------------------------- /Example/SSCustomSideMenu/Images.xcassets/first.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "events.pdf", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/SSCustomSideMenu/Images.xcassets/logout.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "logout.pdf", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/SSCustomSideMenu/Images.xcassets/second.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "friends.pdf", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/SSCustomSideMenu/Images.xcassets/third.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "settings.pdf", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SSCustomSideMenu/SSCustomSideMenu-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 SSCustomSideMenuVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char SSCustomSideMenuVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/SSCustomSideMenu/Images.xcassets/buttonColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | }, 6 | "colors" : [ 7 | { 8 | "idiom" : "universal", 9 | "color" : { 10 | "color-space" : "srgb", 11 | "components" : { 12 | "red" : "71", 13 | "alpha" : "1.000", 14 | "blue" : "181", 15 | "green" : "106" 16 | } 17 | } 18 | } 19 | ] 20 | } -------------------------------------------------------------------------------- /Sources/SSCustomSideMenu/Classes/Enums.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Enums.swift 3 | // SSSideMenu 4 | // 5 | // Created by Kunjal Soni on 17/01/20. 6 | // Copyright © 2020 Kunjal Soni. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | public enum SSMenuAnimationType { 12 | case slideIn, slideOut, compress(CGFloat, CGFloat) 13 | } 14 | 15 | public enum SSMenuCellType { 16 | case defaultStyle, customStyle 17 | } 18 | 19 | public enum SSSideMenuPlacement { 20 | case left, right 21 | } 22 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SSCustomSideMenu_Tests/Pods-SSCustomSideMenu_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_SSCustomSideMenu_TestsVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_SSCustomSideMenu_TestsVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SSCustomSideMenu_Example/Pods-SSCustomSideMenu_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_SSCustomSideMenu_ExampleVersionNumber; 15 | FOUNDATION_EXPORT const unsigned char Pods_SSCustomSideMenu_ExampleVersionString[]; 16 | 17 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SSCustomSideMenu/SSCustomSideMenu.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SSCustomSideMenu 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SSCustomSideMenu/SSCustomSideMenu.debug.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SSCustomSideMenu 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | # references: 2 | # * https://www.objc.io/issues/6-build-tools/travis-ci/ 3 | # * https://github.com/supermarin/xcpretty#usage 4 | 5 | osx_image: xcode7.3 6 | language: objective-c 7 | # cache: cocoapods 8 | # podfile: Example/Podfile 9 | # before_install: 10 | # - gem install cocoapods # Since Travis is not always on latest version 11 | # - pod install --project-directory=Example 12 | script: 13 | - set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/SSCustomSideMenu.xcworkspace -scheme SSCustomSideMenu-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty 14 | - pod lib lint 15 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SSCustomSideMenu/SSCustomSideMenu.release.xcconfig: -------------------------------------------------------------------------------- 1 | CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/SSCustomSideMenu 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | OTHER_SWIFT_FLAGS = $(inherited) -D COCOAPODS 4 | PODS_BUILD_DIR = ${BUILD_DIR} 5 | PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) 6 | PODS_ROOT = ${SRCROOT} 7 | PODS_TARGET_SRCROOT = ${PODS_ROOT}/../.. 8 | PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} 9 | SKIP_INSTALL = YES 10 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 11 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SSCustomSideMenu_Tests/Pods-SSCustomSideMenu_Tests.debug.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SSCustomSideMenu" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SSCustomSideMenu/SSCustomSideMenu.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "SSCustomSideMenu" 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 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 10 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SSCustomSideMenu_Tests/Pods-SSCustomSideMenu_Tests.release.xcconfig: -------------------------------------------------------------------------------- 1 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SSCustomSideMenu" 2 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 3 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SSCustomSideMenu/SSCustomSideMenu.framework/Headers" 4 | OTHER_LDFLAGS = $(inherited) -framework "SSCustomSideMenu" 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 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 10 | -------------------------------------------------------------------------------- /Sources/SSCustomSideMenu/Classes/Protocols.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Protocols.swift 3 | // SSSideMenu 4 | // 5 | // Created by Kunjal Soni on 09/01/20. 6 | // Copyright © 2020 Kunjal Soni. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | public protocol SSSideMenuDelegate: class { 12 | func shouldOpenViewController(forMenuOption menuOption: Int) -> Bool 13 | } 14 | 15 | public protocol SSMenuTableDataSource: class { 16 | func ssMenuTableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell 17 | } 18 | 19 | public protocol SSMenuTableDelegate: class { 20 | func sideMenuDidSelectOption(_ tableView: UITableView, indexPath: IndexPath, previousIndexPath: IndexPath?) 21 | } 22 | -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/SSCustomSideMenu.podspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SSCustomSideMenu", 3 | "version": "0.1.0", 4 | "summary": "Custom Side menu control", 5 | "description": "'SSCustomSideMenu is highly customisable and easy to use Side menu control for iOS Applications'", 6 | "homepage": "https://github.com/kunjalsoni-simformsolutions/SSCustomSideMenu", 7 | "license": { 8 | "type": "MIT", 9 | "file": "LICENSE" 10 | }, 11 | "authors": { 12 | "kunjalsoni-simformsolutions": "kunjal.s@simformsolutions.com" 13 | }, 14 | "source": { 15 | "git": "https://github.com/kunjalsoni-simformsolutions/SSCustomSideMenu.git", 16 | "tag": "0.1.0" 17 | }, 18 | "platforms": { 19 | "ios": "11.0" 20 | }, 21 | "swift_versions": "5.0", 22 | "source_files": "SSCustomSideMenu/Classes/**/*", 23 | "swift_version": "5.0" 24 | } 25 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SSCustomSideMenu_Example/Pods-SSCustomSideMenu_Example.debug.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SSCustomSideMenu" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SSCustomSideMenu/SSCustomSideMenu.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "SSCustomSideMenu" 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 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SSCustomSideMenu_Example/Pods-SSCustomSideMenu_Example.release.xcconfig: -------------------------------------------------------------------------------- 1 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES 2 | FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SSCustomSideMenu" 3 | GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 4 | HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/SSCustomSideMenu/SSCustomSideMenu.framework/Headers" 5 | LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' 6 | OTHER_LDFLAGS = $(inherited) -framework "SSCustomSideMenu" 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 | USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES 13 | -------------------------------------------------------------------------------- /Example/Tests/Tests.swift: -------------------------------------------------------------------------------- 1 | import XCTest 2 | import SSCustomSideMenu 3 | 4 | class Tests: XCTestCase { 5 | 6 | override func setUp() { 7 | super.setUp() 8 | // Put setup code here. This method is called before the invocation of each test method in the class. 9 | } 10 | 11 | override func tearDown() { 12 | // Put teardown code here. This method is called after the invocation of each test method in the class. 13 | super.tearDown() 14 | } 15 | 16 | func testExample() { 17 | // This is an example of a functional test case. 18 | XCTAssert(true, "Pass") 19 | } 20 | 21 | func testPerformanceExample() { 22 | // This is an example of a performance test case. 23 | self.measure() { 24 | // Put the code you want to measure the time of here. 25 | } 26 | } 27 | 28 | } 29 | -------------------------------------------------------------------------------- /.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 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 26 | # Carthage/Checkouts 27 | 28 | Carthage/Build 29 | 30 | # We recommend against adding the Pods directory to your .gitignore. However 31 | # you should judge for yourself, the pros and cons are mentioned at: 32 | # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 33 | # 34 | # Note: if you ignore the Pods directory, make sure to uncomment 35 | # `pod install` in .travis.yml 36 | # 37 | # Pods/ 38 | -------------------------------------------------------------------------------- /Sources/SSCustomSideMenu/Classes/SSMenuButton.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SSMenuButton.swift 3 | // Pods-SSSideMenu_Example 4 | // 5 | // Created by Kunjal Soni on 22/04/20. 6 | // 7 | 8 | import UIKit 9 | 10 | open class SSMenuButton: UIButton { 11 | 12 | // MARK: - 13 | // MARK: - Variables 14 | 15 | @IBInspectable var cornerRadius: CGFloat = 0.0 { 16 | didSet { 17 | self.layer.cornerRadius = self.cornerRadius 18 | } 19 | } 20 | 21 | // MARK: - 22 | // MARK: - Life Cycle 23 | 24 | override open func awakeFromNib() { 25 | super.awakeFromNib() 26 | self.isUserInteractionEnabled = true 27 | self.addTarget(self, action: #selector(sideMenuButtonTapped), for: .touchUpInside) 28 | } 29 | 30 | // MARK: - 31 | // MARK: - Class Functions 32 | 33 | @objc private func sideMenuButtonTapped() { 34 | SSSideMenuControls.openOrCloseSideMenu() 35 | } 36 | 37 | } 38 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/SSCustomSideMenu/SSCustomSideMenu-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 0.1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SSCustomSideMenu_Example/Pods-SSCustomSideMenu_Example-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | ${EXECUTABLE_NAME} 9 | CFBundleIdentifier 10 | ${PRODUCT_BUNDLE_IDENTIFIER} 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | ${PRODUCT_NAME} 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | ${CURRENT_PROJECT_VERSION} 23 | NSPrincipalClass 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SSCustomSideMenu_Tests/Pods-SSCustomSideMenu_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/Pods/Target Support Files/Pods-SSCustomSideMenu_Tests/Pods-SSCustomSideMenu_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 | -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- 1 | // swift-tools-version: 5.6 2 | // The swift-tools-version declares the minimum version of Swift required to build this package. 3 | 4 | import PackageDescription 5 | 6 | let package = Package( 7 | name: "SSCustomSideMenu", 8 | platforms: [.iOS(.v13)], 9 | products: [ 10 | // Products define the executables and libraries a package produces, and make them visible to other packages. 11 | .library( 12 | name: "SSCustomSideMenu", 13 | targets: ["SSCustomSideMenu"]), 14 | ], 15 | dependencies: [ 16 | // Dependencies declare other packages that this package depends on. 17 | // .package(url: /* package url */, from: "1.0.0"), 18 | ], 19 | targets: [ 20 | // Targets are the basic building blocks of a package. A target can define a module or a test suite. 21 | // Targets can depend on other targets in this package, and on products in packages this package depends on. 22 | .target( 23 | name: "SSCustomSideMenu", 24 | dependencies: []) 25 | ] 26 | ) 27 | -------------------------------------------------------------------------------- /Sources/SSCustomSideMenu/Classes/Dynamic.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Dynamic.swift 3 | // SSSideMenu 4 | // 5 | // Created by Kunjal Soni on 02/04/20. 6 | // Copyright © 2020 Kunjal Soni. All rights reserved. 7 | // 8 | 9 | import Foundation 10 | 11 | class Dynamic { 12 | 13 | // MARK: - Typealias 14 | 15 | typealias Listener = (T) -> () 16 | 17 | // MARK: - Vars & Lets 18 | 19 | var listener: Listener? 20 | var value: T { 21 | didSet { 22 | self.fire() 23 | } 24 | } 25 | 26 | // MARK: - Initialization 27 | 28 | init(_ v: T) { // swiftlint:disable:this identifier_name 29 | value = v 30 | } 31 | 32 | // MARK: - Public func 33 | 34 | func bind(_ listener: Listener?) { 35 | self.listener = listener 36 | } 37 | 38 | func bindAndFire(_ listener: Listener?) { 39 | self.listener = listener 40 | listener?(value) 41 | } 42 | 43 | // MARK: - 44 | 45 | internal func fire() { 46 | self.listener?(value) 47 | } 48 | 49 | } 50 | -------------------------------------------------------------------------------- /Example/SSCustomSideMenu/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "20x20", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "20x20", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "29x29", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "29x29", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "idiom" : "iphone", 25 | "size" : "40x40", 26 | "scale" : "2x" 27 | }, 28 | { 29 | "idiom" : "iphone", 30 | "size" : "40x40", 31 | "scale" : "3x" 32 | }, 33 | { 34 | "idiom" : "iphone", 35 | "size" : "60x60", 36 | "scale" : "2x" 37 | }, 38 | { 39 | "idiom" : "iphone", 40 | "size" : "60x60", 41 | "scale" : "3x" 42 | }, 43 | { 44 | "idiom" : "ios-marketing", 45 | "size" : "1024x1024", 46 | "scale" : "1x" 47 | } 48 | ], 49 | "info" : { 50 | "version" : 1, 51 | "author" : "xcode" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2020 kunjalsoni-simformsolutions 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 | -------------------------------------------------------------------------------- /Sources/SSCustomSideMenu/Classes/Extensions.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Extensions.swift 3 | // SSSideMenu 4 | // 5 | // Created by Kunjal Soni on 17/01/20. 6 | // Copyright © 2020 Kunjal Soni. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | extension UIViewController { 12 | 13 | func load(_ viewController: UIViewController?, on view: UIView) { 14 | guard let viewController = viewController else { 15 | return 16 | } 17 | 18 | addChild(viewController) 19 | 20 | viewController.view.frame = view.bounds 21 | viewController.view.translatesAutoresizingMaskIntoConstraints = true 22 | viewController.view.autoresizingMask = [.flexibleWidth, .flexibleHeight] 23 | view.addSubview(viewController.view) 24 | viewController.didMove(toParent: self) 25 | } 26 | 27 | func unload(_ viewController: UIViewController?) { 28 | guard let viewController = viewController else { 29 | return 30 | } 31 | 32 | viewController.willMove(toParent: nil) 33 | viewController.view.removeFromSuperview() 34 | viewController.removeFromParent() 35 | // `didMoveToParentViewController:` is called automatically when removing 36 | } 37 | 38 | }// End of Extension 39 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SSCustomSideMenu_Example/Pods-SSCustomSideMenu_Example-acknowledgements.markdown: -------------------------------------------------------------------------------- 1 | # Acknowledgements 2 | This application makes use of the following third party libraries: 3 | 4 | ## SSCustomSideMenu 5 | 6 | Copyright (c) 2020 kunjalsoni-simformsolutions 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/SSCustomSideMenu/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 | UIInterfaceOrientationLandscapeLeft 36 | UIInterfaceOrientationPortrait 37 | 38 | UISupportedInterfaceOrientations~ipad 39 | 40 | UIInterfaceOrientationLandscapeLeft 41 | UIInterfaceOrientationLandscapeRight 42 | UIInterfaceOrientationPortrait 43 | UIInterfaceOrientationPortraitUpsideDown 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /SSCustomSideMenu.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod lib lint SSCustomSideMenu.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 https://guides.cocoapods.org/syntax/podspec.html 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | s.name = 'SSCustomSideMenu' 11 | s.version = '1.0.0' 12 | s.summary = 'Custom Side menu control' 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 | 'SSCustomSideMenu is highly customisable and easy to use Side menu control for iOS Applications' 22 | DESC 23 | 24 | s.homepage = 'https://github.com/simformsolutions/SSCustomSideMenu' 25 | # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' 26 | s.license = { :type => 'MIT', :file => 'LICENSE' } 27 | s.author = { 'kunjalsoni-simformsolutions' => 'kunjal.s@simformsolutions.com' } 28 | s.source = { :git => 'https://github.com/simformsolutions/SSCustomSideMenu.git', :tag => s.version.to_s } 29 | # s.social_media_url = 'https://twitter.com/' 30 | 31 | s.ios.deployment_target = '11.0' 32 | s.swift_versions = '5.0' 33 | 34 | s.source_files = 'Sources/SSCustomSideMenu/Classes/**/*' 35 | 36 | # s.resource_bundles = { 37 | # 'SSCustomSideMenu' => ['SSCustomSideMenu/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 | -------------------------------------------------------------------------------- /Sources/SSCustomSideMenu/Classes/SSMenuTableView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SSMenuTableView.swift 3 | // SSSideMenu 4 | // 5 | // Created by Kunjal Soni on 16/01/20. 6 | // Copyright © 2020 Kunjal Soni. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | open class SSMenuTableView: UITableView { 12 | 13 | // MARK: - 14 | // MARK: - Variables 15 | 16 | var selectedIndexPath: IndexPath? = IndexPath(row: 0, section: 0) 17 | public weak var ssMenuTableDataSource: SSMenuTableDataSource? 18 | public var config = SSMenuCellConfig() { 19 | didSet { 20 | self.reloadData() 21 | } 22 | } 23 | 24 | // MARK: - 25 | // MARK: - View Life Cycle 26 | 27 | override open func draw(_ rect: CGRect) { 28 | super.draw(rect) 29 | self.backgroundColor = .clear 30 | dataSource = self 31 | self.reloadData() 32 | } 33 | 34 | } 35 | 36 | // MARK: - 37 | // MARK: - Table View Data Source 38 | 39 | extension SSMenuTableView: UITableViewDataSource { 40 | 41 | public func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 42 | return config.numberOfOptions 43 | } 44 | 45 | public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 46 | if config.cellStyle == .defaultStyle { 47 | let cell = SSMenuCell() 48 | cell.setupMenuCell(config: config) 49 | let image = (config.images.count <= indexPath.row) ? nil : config.images[indexPath.row] 50 | let title = (config.titles.count <= indexPath.row) ? "" : config.titles[indexPath.row] 51 | cell.setData(image: image, title: title) 52 | cell.setSelected(isSelected: self.selectedIndexPath == indexPath) 53 | return cell 54 | } else { 55 | return (ssMenuTableDataSource?.ssMenuTableView(tableView, cellForRowAt: indexPath))! 56 | } 57 | } 58 | 59 | } 60 | -------------------------------------------------------------------------------- /Sources/SSCustomSideMenu/Classes/SSMenuCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SSMenuCell.swift 3 | // SSSideMenu 4 | // 5 | // Created by Kunjal Soni on 08/01/20. 6 | // Copyright © 2020 Kunjal Soni. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | open class SSMenuCell: UITableViewCell { 12 | 13 | // MARK: - 14 | // MARK: - Variables 15 | 16 | private let iconImageView = UIImageView() 17 | private let label = UILabel() 18 | public var config = SSMenuCellConfig() 19 | 20 | // MARK: - 21 | // MARK: - Class Functions 22 | 23 | internal func setupMenuCell(config: SSMenuCellConfig) { 24 | self.selectionStyle = .none 25 | self.config = config 26 | backgroundColor = config.bgColor 27 | 28 | addSubview(iconImageView) 29 | iconImageView.translatesAutoresizingMaskIntoConstraints = false 30 | iconImageView.centerYAnchor.constraint(equalTo: centerYAnchor).isActive = true 31 | iconImageView.leftAnchor.constraint(equalTo: leftAnchor, constant: config.leftIconPadding).isActive = true 32 | iconImageView.heightAnchor.constraint(equalToConstant: config.imageHeight).isActive = true 33 | iconImageView.widthAnchor.constraint(equalToConstant: config.imageWidth).isActive = true 34 | 35 | addSubview(label) 36 | label.translatesAutoresizingMaskIntoConstraints = false 37 | label.centerYAnchor.constraint(equalTo: centerYAnchor).isActive = true 38 | label.leftAnchor.constraint(equalTo: iconImageView.rightAnchor, constant: config.imageToTitlePadding).isActive = true 39 | } 40 | 41 | internal func setData(image: UIImage?, title: String?) { 42 | iconImageView.image = image 43 | label.text = title 44 | } 45 | 46 | internal func setSelected(isSelected: Bool) { 47 | self.label.textColor = isSelected ? config.selectedColor : config.nonSelectedColor 48 | let selectedImage = self.iconImageView.image?.withRenderingMode(.alwaysTemplate) 49 | self.iconImageView.tintColor = isSelected ? config.selectedColor : config.nonSelectedColor 50 | self.iconImageView.image = selectedImage 51 | } 52 | 53 | }// End of Class 54 | -------------------------------------------------------------------------------- /Sources/SSCustomSideMenu/Classes/Config.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Config.swift 3 | // SSSideMenu 4 | // 5 | // Created by Kunjal Soni on 10/01/20. 6 | // Copyright © 2020 Kunjal Soni. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | open class SSSideMenuConfig { 12 | 13 | // Cell type: DefaultStyle will use default cell design 14 | // For custom design, use customStyle 15 | 16 | // Home View controller will be shown by default 17 | public var homeController: UIViewController! 18 | public var menuTable: SSMenuTableView! 19 | 20 | // Gestures 21 | public var isTapGestureEnabled = true 22 | 23 | // Menu Width 24 | public var menuWidth: CGFloat = UIScreen.main.bounds.width - 80 25 | 26 | // Animations 27 | public var animationDuration = 0.5 28 | public var damping: CGFloat = 1 29 | public var animationType: SSMenuAnimationType = .slideIn 30 | 31 | // Action target ViewControllers 32 | public var viewControllers = [UIViewController]() 33 | public var sideMenuPlacement = SSSideMenuPlacement.left 34 | 35 | // MARK: - 36 | // MARK: - Init 37 | 38 | public init() { } 39 | 40 | } 41 | 42 | open class SSMenuCellConfig { 43 | // Number of options in menu 44 | public var numberOfOptions: Int = 0 45 | 46 | public var cellStyle = SSMenuCellType.defaultStyle 47 | 48 | // Data Sources 49 | public var images = [UIImage?]() 50 | public var titles = [String?]() 51 | 52 | // Height of menu image 53 | public var imageHeight: CGFloat = 24 54 | 55 | // Width of menu image 56 | public var imageWidth: CGFloat = 24 57 | 58 | // Padding from left anchor to icon 59 | public var leftIconPadding: CGFloat = 12 60 | 61 | // Padding from image to title 62 | public var imageToTitlePadding: CGFloat = 12 63 | 64 | // Background color of cell 65 | public var bgColor = UIColor.clear 66 | 67 | // selected font and image tint color 68 | public var selectedColor = UIColor.blue 69 | public var nonSelectedColor = UIColor.black 70 | 71 | // MARK: - 72 | // MARK: - Init 73 | 74 | public init() { } 75 | 76 | } 77 | -------------------------------------------------------------------------------- /Example/SSCustomSideMenu/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // SSCustomSideMenu 4 | // 5 | // Created by kunjalsoni-simformsolutions on 04/23/2020. 6 | // Copyright (c) 2020 kunjalsoni-simformsolutions. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(_ application: UIApplication) { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 25 | } 26 | 27 | func applicationDidEnterBackground(_ application: UIApplication) { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(_ application: UIApplication) { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | func applicationDidBecomeActive(_ application: UIApplication) { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | func applicationWillTerminate(_ application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } 46 | 47 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SSCustomSideMenu_Example/Pods-SSCustomSideMenu_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) 2020 kunjalsoni-simformsolutions <kunjal.s@simformsolutions.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 | SSCustomSideMenu 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/SSCustomSideMenu/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // SSCustomSideMenu 4 | // 5 | // Created by Kunjal Soni on 02/04/20. 6 | // Copyright © 2020 Kunjal Soni. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import SSCustomSideMenu 11 | 12 | class ViewController: SSSideMenuContainerViewController { 13 | 14 | let menuTable = SSMenuTableView() 15 | 16 | override func viewDidLoad() { 17 | super.viewDidLoad() 18 | configureSideMenu() 19 | } 20 | 21 | private func configureSideMenu() { 22 | 23 | self.menuTable.backgroundColor = .clear 24 | menuTable.separatorStyle = .none 25 | menuTable.rowHeight = 60 26 | menuTable.showsHorizontalScrollIndicator = false 27 | menuTable.showsVerticalScrollIndicator = false 28 | 29 | let menuCellConfig = SSMenuCellConfig() 30 | 31 | menuCellConfig.cellStyle = .defaultStyle // .customStyle 32 | menuCellConfig.leftIconPadding = 20 33 | menuCellConfig.imageToTitlePadding = 10 34 | menuCellConfig.imageHeight = 24 35 | menuCellConfig.imageWidth = 24 36 | 37 | menuCellConfig.selectedColor = UIColor(named: "buttonColor")! 38 | menuCellConfig.nonSelectedColor = .black 39 | 40 | menuCellConfig.images = [UIImage(named: "first"), UIImage(named: "second"), UIImage(named: "third"), UIImage(named: "logout")] 41 | menuCellConfig.titles = ["Home", "My Friends", "Settings", "Logout"] 42 | 43 | menuCellConfig.numberOfOptions = 4 44 | menuTable.config = menuCellConfig 45 | 46 | let sideMenuConfig = SSSideMenuConfig() 47 | sideMenuConfig.animationType = .slideOut // .slideIn, .compress(0.8, 20) 48 | sideMenuConfig.sideMenuPlacement = .left // .right 49 | sideMenuConfig.menuWidth = UIScreen.main.bounds.width * 0.5 50 | 51 | let firstViewController = storyboard?.instantiateViewController(withIdentifier: "HomeViewController") 52 | let secondViewController = storyboard?.instantiateViewController(withIdentifier: "MyFriendsViewController") 53 | let thirdViewController = storyboard?.instantiateViewController(withIdentifier: "SettingsViewController") 54 | 55 | sideMenuConfig.viewControllers = [firstViewController!, secondViewController!, thirdViewController!] 56 | sideMenuConfig.menuTable = menuTable 57 | self.ssMenuConfig = sideMenuConfig 58 | 59 | self.sideMenuDelegate = self 60 | } 61 | 62 | } 63 | 64 | // MARK: - 65 | // MARK: - SSSideMenu Delegate 66 | 67 | extension ViewController: SSSideMenuDelegate { 68 | 69 | func shouldOpenViewController(forMenuOption menuOption: Int) -> Bool { 70 | // Perform action for custom options (i.e logout) 71 | if menuOption == 3 { 72 | return false 73 | } else { 74 | return true 75 | } 76 | } 77 | 78 | } 79 | -------------------------------------------------------------------------------- /Example/SSCustomSideMenu/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 25 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | -------------------------------------------------------------------------------- /Example/SSCustomSideMenu.xcodeproj/xcshareddata/xcschemes/SSCustomSideMenu-Example.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 45 | 46 | 48 | 54 | 55 | 56 | 57 | 58 | 64 | 65 | 66 | 67 | 68 | 69 | 80 | 82 | 88 | 89 | 90 | 91 | 92 | 93 | 99 | 101 | 107 | 108 | 109 | 110 | 112 | 113 | 116 | 117 | 118 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SSCustomSideMenu 2 | 3 | [![Version](https://img.shields.io/cocoapods/v/SSCustomSideMenu.svg?style=flat)](https://cocoapods.org/pods/SSCustomSideMenu) 4 | [![License](https://img.shields.io/cocoapods/l/SSCustomSideMenu.svg?style=flat)](https://cocoapods.org/pods/SSCustomSideMenu) 5 | [![Platform](https://img.shields.io/cocoapods/p/SSCustomSideMenu.svg?style=flat)](https://cocoapods.org/pods/SSCustomSideMenu) 6 | 7 | ![Alt text](http://files.simformsolutions.com.s3.amazonaws.com/simformscreen/screencast_2020-05-06_18-39-40.gif) 8 | ![Alt text](http://files.simformsolutions.com.s3.amazonaws.com/simformscreen/screencast_2020-05-06_18-42-41.gif) 9 | ![Alt text](http://files.simformsolutions.com.s3.amazonaws.com/simformscreen/screencast_2020-05-06_18-52-40.gif) 10 | ![Alt text](http://files.simformsolutions.com.s3.amazonaws.com/simformscreen/screencast_2020-05-06_18-59-57.gif) 11 | 12 | 13 | ## Features 14 | - Highly customizable 15 | - Multiple options of animations 16 | - Dynamic menu size 17 | - Available through CocoaPods 18 | 19 | ## Requirements 20 | - iOS 11.0+ 21 | - Xcode 10+ 22 | 23 | ## Installation 24 | **CocoaPods** 25 | 26 | - You can use CocoaPods to install SSCustomSideMenu by adding it to your Podfile: 27 | 28 | use_frameworks! 29 | pod 'SSCustomSideMenu' 30 | 31 | - In the swift file, import SSSideMenu module: 32 | 33 | import UIKit 34 | import SSCustomSideMenu 35 | 36 | **Manually** 37 | - Download and drop **SSCustomSideMenu** folder in your project. 38 | - Congratulations! 39 | 40 | ## Usage example 41 | 42 | **Create a subclass of SSSideMenuContainerViewController** 43 | 44 | class SideMenuViewController: SSSideMenuContainerViewController { ... } 45 | 46 | 47 | - In the storyboard assign a custom class **SideMenuViewController** you just created to a viewController. This viewController will be the container for Side menu. 48 | ![Alt text](http://files.simformsolutions.com.s3.amazonaws.com/simformscreen/Main.storyboard_2020-04-23_10-22-17.png) 49 | 50 | **Create Menu Table** 51 | 52 | let menuTable = SSMenuTableView() 53 | 54 | 55 | **Configure Side Menu Options** 56 | 57 | let menuCellConfig = SSMenuCellConfig() 58 | 59 | menuCellConfig.cellStyle = .defaultStyle 60 | 61 | menuCellConfig.leftIconPadding = 20 62 | menuCellConfig.imageToTitlePadding = 10 63 | menuCellConfig.imageHeight = 24 64 | menuCellConfig.imageWidth = 24 65 | 66 | menuCellConfig.numberOfOptions = 3 67 | 68 | menuCellConfig.selectedColor = .purple 69 | menuCellConfig.nonSelectedColor = .black 70 | 71 | menuCellConfig.images = [UIImage(named: "first"), UIImage(named: "second"), UIImage(named: "third")] 72 | menuCellConfig.titles = ["First", "Second", "Thrird"] 73 | 74 | self.menuTable.config = menuCellConfig 75 | 76 | 77 | **Configure Side Menu** 78 | 79 | let sideMenuConfig = SSSideMenuConfig() 80 | sideMenuConfig.animationType = .slideOut // Other options: .slideIn, .compress(0.8, 20) 81 | sideMenuConfig.sideMenuPlacement = .left // Other options: .right 82 | sideMenuConfig.menuWidth = UIScreen.main.bounds.width * 0.5 83 | 84 | let firstViewController = storyboard?.instantiateViewController(withIdentifier: "FirstViewController") 85 | let secondViewController = storyboard?.instantiateViewController(withIdentifier: "SecondViewController") 86 | let thirdViewController = storyboard?.instantiateViewController(withIdentifier: "ThirdViewController") 87 | 88 | sideMenuConfig.viewControllers = [firstViewController!, secondViewController!, thirdViewController!] 89 | 90 | sideMenuConfig.menuTable = menuTable 91 | 92 | self.ssMenuConfig = sideMenuConfig 93 | 94 | 95 | **Delegates** 96 | 97 | - SSCustomSideMenu provides delegate 'sideMenuDelegate' which lets developers dynamically decide which operations to perform on menu option selection 98 | 99 | sideMenuDelegate = self 100 | 101 | - By doing this, you will be asked to confirm to following protocol: 102 | 103 | extension ViewController: SSSideMenuDelegate { 104 | func shouldOpenViewController(forMenuOption menuOption: Int) -> Bool { 105 | if menuOption == 1 { 106 | // Perform action for custom options (i.e logout) 107 | return false 108 | } else { 109 | return true 110 | } 111 | } 112 | } 113 | 114 | 115 | **Open and Close Side Menu** 116 | 117 | - SSCustomSideMenu Provides custom side menu button - 'SSMenuButton'. 118 | You only need to assign SSMenuButton custom class to your UIButton from Interface Builder 119 | 120 | - Manually open or close side menu : 121 | 122 | SSSideMenuControls.openOrCloseSideMenu() 123 | 124 | # Contribute 125 | - We would love you for the contribution to SSCustomSideMenu, check the LICENSE file for more info. 126 | 127 | # License 128 | 129 | - SSCustomSideMenu is available under the MIT license. See the LICENSE file for more info. 130 | 131 | [![License](https://img.shields.io/cocoapods/l/SSCustomSideMenu.svg?style=flat)](https://cocoapods.org/pods/SSCustomSideMenu) 132 | [![Platform](https://img.shields.io/cocoapods/p/SSCustomSideMenu.svg?style=flat)](https://cocoapods.org/pods/SSCustomSideMenu) 133 | -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-SSCustomSideMenu_Example/Pods-SSCustomSideMenu_Example-frameworks.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | set -u 4 | set -o pipefail 5 | 6 | function on_error { 7 | echo "$(realpath -mq "${0}"):$1: error: Unexpected failure" 8 | } 9 | trap 'on_error $LINENO' ERR 10 | 11 | if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then 12 | # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy 13 | # frameworks to, so exit 0 (signalling the script phase was successful). 14 | exit 0 15 | fi 16 | 17 | echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 18 | mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 19 | 20 | COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" 21 | SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" 22 | 23 | # Used as a return value for each invocation of `strip_invalid_archs` function. 24 | STRIP_BINARY_RETVAL=0 25 | 26 | # This protects against multiple targets copying the same framework dependency at the same time. The solution 27 | # was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html 28 | RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") 29 | 30 | # Copies and strips a vendored framework 31 | install_framework() 32 | { 33 | if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then 34 | local source="${BUILT_PRODUCTS_DIR}/$1" 35 | elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then 36 | local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" 37 | elif [ -r "$1" ]; then 38 | local source="$1" 39 | fi 40 | 41 | local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" 42 | 43 | if [ -L "${source}" ]; then 44 | echo "Symlinked..." 45 | source="$(readlink "${source}")" 46 | fi 47 | 48 | # Use filter instead of exclude so missing patterns don't throw errors. 49 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" 50 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" 51 | 52 | local basename 53 | basename="$(basename -s .framework "$1")" 54 | binary="${destination}/${basename}.framework/${basename}" 55 | 56 | if ! [ -r "$binary" ]; then 57 | binary="${destination}/${basename}" 58 | elif [ -L "${binary}" ]; then 59 | echo "Destination binary is symlinked..." 60 | dirname="$(dirname "${binary}")" 61 | binary="${dirname}/$(readlink "${binary}")" 62 | fi 63 | 64 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 65 | if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then 66 | strip_invalid_archs "$binary" 67 | fi 68 | 69 | # Resign the code if required by the build settings to avoid unstable apps 70 | code_sign_if_enabled "${destination}/$(basename "$1")" 71 | 72 | # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. 73 | if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then 74 | local swift_runtime_libs 75 | swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u) 76 | for lib in $swift_runtime_libs; do 77 | echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" 78 | rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" 79 | code_sign_if_enabled "${destination}/${lib}" 80 | done 81 | fi 82 | } 83 | 84 | # Copies and strips a vendored dSYM 85 | install_dsym() { 86 | local source="$1" 87 | warn_missing_arch=${2:-true} 88 | if [ -r "$source" ]; then 89 | # Copy the dSYM into the targets temp dir. 90 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" 91 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" 92 | 93 | local basename 94 | basename="$(basename -s .dSYM "$source")" 95 | binary_name="$(ls "$source/Contents/Resources/DWARF")" 96 | binary="${DERIVED_FILES_DIR}/${basename}.dSYM/Contents/Resources/DWARF/${binary_name}" 97 | 98 | # Strip invalid architectures so "fat" simulator / device frameworks work on device 99 | if [[ "$(file "$binary")" == *"Mach-O "*"dSYM companion"* ]]; then 100 | strip_invalid_archs "$binary" "$warn_missing_arch" 101 | fi 102 | 103 | if [[ $STRIP_BINARY_RETVAL == 1 ]]; then 104 | # Move the stripped file into its final destination. 105 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" 106 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --links --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.dSYM" "${DWARF_DSYM_FOLDER_PATH}" 107 | else 108 | # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. 109 | touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.dSYM" 110 | fi 111 | fi 112 | } 113 | 114 | # Copies the bcsymbolmap files of a vendored framework 115 | install_bcsymbolmap() { 116 | local bcsymbolmap_path="$1" 117 | local destination="${BUILT_PRODUCTS_DIR}" 118 | echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}"" 119 | rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${bcsymbolmap_path}" "${destination}" 120 | } 121 | 122 | # Signs a framework with the provided identity 123 | code_sign_if_enabled() { 124 | if [ -n "${EXPANDED_CODE_SIGN_IDENTITY:-}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then 125 | # Use the current code_sign_identity 126 | echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" 127 | local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" 128 | 129 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 130 | code_sign_cmd="$code_sign_cmd &" 131 | fi 132 | echo "$code_sign_cmd" 133 | eval "$code_sign_cmd" 134 | fi 135 | } 136 | 137 | # Strip invalid architectures 138 | strip_invalid_archs() { 139 | binary="$1" 140 | warn_missing_arch=${2:-true} 141 | # Get architectures for current target binary 142 | binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" 143 | # Intersect them with the architectures we are building for 144 | intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" 145 | # If there are no archs supported by this binary then warn the user 146 | if [[ -z "$intersected_archs" ]]; then 147 | if [[ "$warn_missing_arch" == "true" ]]; then 148 | echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." 149 | fi 150 | STRIP_BINARY_RETVAL=0 151 | return 152 | fi 153 | stripped="" 154 | for arch in $binary_archs; do 155 | if ! [[ "${ARCHS}" == *"$arch"* ]]; then 156 | # Strip non-valid architectures in-place 157 | lipo -remove "$arch" -output "$binary" "$binary" 158 | stripped="$stripped $arch" 159 | fi 160 | done 161 | if [[ "$stripped" ]]; then 162 | echo "Stripped $binary of architectures:$stripped" 163 | fi 164 | STRIP_BINARY_RETVAL=1 165 | } 166 | 167 | install_artifact() { 168 | artifact="$1" 169 | base="$(basename "$artifact")" 170 | case $base in 171 | *.framework) 172 | install_framework "$artifact" 173 | ;; 174 | *.dSYM) 175 | # Suppress arch warnings since XCFrameworks will include many dSYM files 176 | install_dsym "$artifact" "false" 177 | ;; 178 | *.bcsymbolmap) 179 | install_bcsymbolmap "$artifact" 180 | ;; 181 | *) 182 | echo "error: Unrecognized artifact "$artifact"" 183 | ;; 184 | esac 185 | } 186 | 187 | copy_artifacts() { 188 | file_list="$1" 189 | while read artifact; do 190 | install_artifact "$artifact" 191 | done <$file_list 192 | } 193 | 194 | ARTIFACT_LIST_FILE="${BUILT_PRODUCTS_DIR}/cocoapods-artifacts-${CONFIGURATION}.txt" 195 | if [ -r "${ARTIFACT_LIST_FILE}" ]; then 196 | copy_artifacts "${ARTIFACT_LIST_FILE}" 197 | fi 198 | 199 | if [[ "$CONFIGURATION" == "Debug" ]]; then 200 | install_framework "${BUILT_PRODUCTS_DIR}/SSCustomSideMenu/SSCustomSideMenu.framework" 201 | fi 202 | if [[ "$CONFIGURATION" == "Release" ]]; then 203 | install_framework "${BUILT_PRODUCTS_DIR}/SSCustomSideMenu/SSCustomSideMenu.framework" 204 | fi 205 | if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then 206 | wait 207 | fi 208 | -------------------------------------------------------------------------------- /Sources/SSCustomSideMenu/Classes/SSSideMenuContainerViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ContainerVC.swift 3 | // SSSideMenu 4 | // 5 | // Created by Kunjal Soni on 08/01/20. 6 | // Copyright © 2020 Kunjal Soni. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | open class SSSideMenuControls { 12 | fileprivate static var action = Dynamic(Void()) 13 | public static func openOrCloseSideMenu() { 14 | SSSideMenuControls.action.fire() 15 | } 16 | } 17 | 18 | open class SSSideMenuContainerViewController: UIViewController { 19 | 20 | // MARK: - 21 | // MARK: - Variables 22 | 23 | private var isExpanded = false 24 | private let imageView = UIImageView() 25 | private var previousIndexPath: IndexPath? = IndexPath(row: 0, section: 0) 26 | private let contentContainerView = UIView() 27 | open var ssMenuConfig = SSSideMenuConfig() { 28 | didSet { 29 | configureHomeController() 30 | tapGesture?.isEnabled = false 31 | } 32 | } 33 | weak open var menuSelectionActionDelegate: SSMenuTableDelegate? 34 | open weak var sideMenuDelegate: SSSideMenuDelegate? 35 | private let menuContainerView = UIView() 36 | private var selectedIndex: Int? = 0 37 | private var tapGesture: UITapGestureRecognizer? = UITapGestureRecognizer() 38 | 39 | // MARK: - 40 | // MARK: - Life Cycle 41 | 42 | override open func viewDidLoad() { 43 | super.viewDidLoad() 44 | SSSideMenuControls.action.bind { [weak self] (_) in 45 | guard let uSelf = self else { return } 46 | uSelf.configureMenuFor(menuOption: nil, openViewController: false) 47 | } 48 | } 49 | 50 | open override func viewWillTransition(to size: CGSize, with coordinator: UIViewControllerTransitionCoordinator) { 51 | super.viewWillTransition(to: size, with: coordinator) 52 | if isExpanded { 53 | tapGesture?.isEnabled = false 54 | UIView.animate(withDuration: ssMenuConfig.animationDuration, delay: 0, usingSpringWithDamping: ssMenuConfig.damping, initialSpringVelocity: 0, options: .curveEaseInOut, animations: { [weak self] in 55 | guard let self else { return } 56 | performCloseAnimation() 57 | }) { [weak self] (_) in 58 | guard let self else { return } 59 | switch ssMenuConfig.animationType { 60 | case .compress(_): 61 | load(self.ssMenuConfig.homeController, on: self.contentContainerView) 62 | default: 63 | break 64 | } 65 | imageView.removeFromSuperview() 66 | if let selectedIndexPath = ssMenuConfig.menuTable.selectedIndexPath?.row { 67 | didSelectMenuOption(menuOption: selectedIndexPath) 68 | } 69 | } 70 | } 71 | self.ssMenuConfig.menuWidth = UIScreen.main.bounds.width / 2 72 | coordinator.animate(alongsideTransition: { [weak self] _ in 73 | guard let self else { return } 74 | contentContainerView.frame = CGRect(x: 0, y: 0, width: view.bounds.size.width, height: view.bounds.size.height) 75 | imageView.frame = contentContainerView.frame 76 | }, completion: nil) 77 | } 78 | 79 | // MARK: - 80 | // MARK: - Class Functions 81 | 82 | private func configureHomeController() { 83 | if ssMenuConfig.homeController == nil { 84 | ssMenuConfig.homeController = ssMenuConfig.viewControllers[0] 85 | } 86 | 87 | contentContainerView.frame = self.view.bounds 88 | contentContainerView.layer.shadowColor = UIColor.black.cgColor 89 | contentContainerView.layer.shadowOpacity = 0.5 90 | contentContainerView.layer.shadowRadius = 25 91 | imageView.frame = contentContainerView.frame 92 | imageView.clipsToBounds = true 93 | self.view.addSubview(contentContainerView) 94 | 95 | load(ssMenuConfig.homeController, on: contentContainerView) 96 | contentContainerView.sendSubviewToBack(ssMenuConfig.homeController.view) 97 | 98 | setNeedsStatusBarAppearanceUpdate() 99 | 100 | // Add tap gesture 101 | if ssMenuConfig.isTapGestureEnabled { 102 | tapGesture = UITapGestureRecognizer(target: self, action: #selector(performGestureAction)) 103 | imageView.isUserInteractionEnabled = true 104 | imageView.addGestureRecognizer(tapGesture!) 105 | } 106 | } 107 | 108 | internal func changeSideMenuState() { 109 | self.configureMenuFor(menuOption: nil, openViewController: false) 110 | } 111 | 112 | private func configureMenuController() { 113 | ssMenuConfig.menuTable.delegate = self 114 | self.menuContainerView.frame = CGRect(x: (ssMenuConfig.sideMenuPlacement == . left) ? -ssMenuConfig.menuWidth : UIScreen.main.bounds.width, y: 0, width: ssMenuConfig.menuWidth, height: self.view.frame.height) 115 | ssMenuConfig.menuTable.frame = CGRect(x: 0, y: 0, width: ssMenuConfig.menuWidth, height: self.view.frame.height) 116 | self.menuContainerView.addSubview(ssMenuConfig.menuTable) 117 | self.view.addSubview(menuContainerView) 118 | } 119 | 120 | @objc private func performGestureAction() { 121 | if isExpanded { 122 | self.configureMenuFor(menuOption: nil, openViewController: false) 123 | } 124 | } 125 | 126 | private func didSelectMenuOption(menuOption: Int?) { 127 | for subview in contentContainerView.subviews { 128 | subview.removeFromSuperview() 129 | } 130 | self.ssMenuConfig.homeController = ssMenuConfig.viewControllers[menuOption!] 131 | configureHomeController() 132 | } 133 | 134 | private func performOpenAnimation() { 135 | if ssMenuConfig.sideMenuPlacement == .left { 136 | self.menuContainerView.frame.origin.x = 0 137 | switch ssMenuConfig.animationType { 138 | case .slideIn: 139 | break 140 | case .slideOut: 141 | self.contentContainerView.frame.origin.x = self.ssMenuConfig.menuWidth 142 | case .compress(let multiplier, let cornerRadius): 143 | self.imageView.layer.cornerRadius = cornerRadius 144 | self.contentContainerView.transform = CGAffineTransform(scaleX: multiplier, y: multiplier) 145 | self.contentContainerView.frame = CGRect(x: self.ssMenuConfig.menuWidth, y: 0, width: contentContainerView.frame.width, height: contentContainerView.frame.height) 146 | self.contentContainerView.center.y = UIScreen.main.bounds.height / 2 147 | } 148 | } else { 149 | self.menuContainerView.frame.origin.x = UIScreen.main.bounds.width - ssMenuConfig.menuWidth 150 | switch ssMenuConfig.animationType { 151 | case .slideIn: 152 | break 153 | case .slideOut: 154 | self.contentContainerView.frame.origin.x = -ssMenuConfig.menuWidth 155 | case .compress(let multiplier, let cornerRadius): 156 | self.imageView.layer.cornerRadius = cornerRadius 157 | let screenWidth = UIScreen.main.bounds.width 158 | self.contentContainerView.transform = CGAffineTransform(scaleX: multiplier, y: multiplier) 159 | self.contentContainerView.frame = CGRect(x: (screenWidth - ssMenuConfig.menuWidth) - (multiplier * screenWidth), y: 0, width: contentContainerView.frame.width, height: contentContainerView.frame.height) 160 | self.contentContainerView.center.y = UIScreen.main.bounds.height / 2 161 | } 162 | } 163 | } 164 | 165 | private func performCloseAnimation() { 166 | self.menuContainerView.frame.origin.x = (ssMenuConfig.sideMenuPlacement == .left) ? -self.ssMenuConfig.menuWidth : UIScreen.main.bounds.width 167 | 168 | switch ssMenuConfig.animationType { 169 | case .slideIn: 170 | break 171 | case .slideOut: 172 | self.contentContainerView.frame.origin.x = 0 173 | case .compress(_): 174 | contentContainerView.transform = .identity 175 | contentContainerView.frame = self.view.bounds 176 | self.imageView.layer.cornerRadius = 0 177 | } 178 | } 179 | 180 | private func takeScreenshot(_ shouldSave: Bool = false) -> UIImage? { 181 | let renderer = UIGraphicsImageRenderer(size: view.bounds.size) 182 | let image = renderer.image { _ in 183 | view.drawHierarchy(in: view.bounds, afterScreenUpdates: true) 184 | } 185 | return image 186 | } 187 | 188 | private func animatePanel(shouldExpand: Bool, menuOption: Int?, openViewController: Bool) { 189 | if shouldExpand { 190 | // Show menu 191 | tapGesture?.isEnabled = true 192 | 193 | switch ssMenuConfig.animationType { 194 | case .compress(_): 195 | imageView.image = takeScreenshot() 196 | unload(ssMenuConfig.homeController) 197 | default: 198 | imageView.image = nil 199 | } 200 | contentContainerView.addSubview(imageView) 201 | 202 | UIView.animate(withDuration: ssMenuConfig.animationDuration, delay: 0, usingSpringWithDamping: ssMenuConfig.damping, initialSpringVelocity: 0, options: .curveEaseInOut, animations: { 203 | self.performOpenAnimation() 204 | }, completion: nil) 205 | } else { 206 | // Hide menu 207 | tapGesture?.isEnabled = false 208 | UIView.animate(withDuration: ssMenuConfig.animationDuration, delay: 0, usingSpringWithDamping: ssMenuConfig.damping, initialSpringVelocity: 0, options: .curveEaseInOut, animations: { 209 | self.performCloseAnimation() 210 | }) { (_) in 211 | switch self.ssMenuConfig.animationType { 212 | case .compress(_): 213 | self.load(self.ssMenuConfig.homeController, on: self.contentContainerView) 214 | default: 215 | break 216 | } 217 | self.imageView.removeFromSuperview() 218 | guard let menuOption = menuOption else { return } 219 | if openViewController { 220 | self.didSelectMenuOption(menuOption: menuOption) 221 | } 222 | } 223 | } 224 | } 225 | 226 | private func configureMenuFor(menuOption: Int?, openViewController: Bool = true) { 227 | if !isExpanded { 228 | configureMenuController() 229 | } 230 | 231 | isExpanded = !isExpanded 232 | animatePanel(shouldExpand: isExpanded, menuOption: menuOption, openViewController: openViewController) 233 | } 234 | } 235 | 236 | extension SSSideMenuContainerViewController: UITableViewDelegate { 237 | 238 | public func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { 239 | let shouldOpenViewController = sideMenuDelegate?.shouldOpenViewController(forMenuOption: indexPath.row) ?? false 240 | if shouldOpenViewController { 241 | ssMenuConfig.menuTable.selectedIndexPath = indexPath 242 | } 243 | menuSelectionActionDelegate?.sideMenuDidSelectOption(tableView, indexPath: indexPath, previousIndexPath: previousIndexPath) 244 | self.configureMenuFor(menuOption: indexPath.row, openViewController: shouldOpenViewController) 245 | previousIndexPath = indexPath 246 | ssMenuConfig.menuTable.reloadData() 247 | } 248 | 249 | } 250 | -------------------------------------------------------------------------------- /Example/SSCustomSideMenu/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 | 41 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 90 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 139 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | -------------------------------------------------------------------------------- /Example/SSCustomSideMenu.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 4F090985D3ACB330048A38FE /* Pods_SSCustomSideMenu_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 95AB37C30D67A35013DA61CF /* Pods_SSCustomSideMenu_Example.framework */; }; 11 | 5FB2682D9E646640B33F252D /* Pods_SSCustomSideMenu_Tests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B946BCBA8D7D5A8AFB5CF7E6 /* Pods_SSCustomSideMenu_Tests.framework */; }; 12 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD51AFB9204008FA782 /* AppDelegate.swift */; }; 13 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACD71AFB9204008FA782 /* ViewController.swift */; }; 14 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 607FACD91AFB9204008FA782 /* Main.storyboard */; }; 15 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDC1AFB9204008FA782 /* Images.xcassets */; }; 16 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */; }; 17 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 607FACEB1AFB9204008FA782 /* Tests.swift */; }; 18 | /* End PBXBuildFile section */ 19 | 20 | /* Begin PBXContainerItemProxy section */ 21 | 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */ = { 22 | isa = PBXContainerItemProxy; 23 | containerPortal = 607FACC81AFB9204008FA782 /* Project object */; 24 | proxyType = 1; 25 | remoteGlobalIDString = 607FACCF1AFB9204008FA782; 26 | remoteInfo = SSCustomSideMenu; 27 | }; 28 | /* End PBXContainerItemProxy section */ 29 | 30 | /* Begin PBXFileReference section */ 31 | 09A303B9FB9A5AB43D43F131 /* Pods-SSCustomSideMenu_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SSCustomSideMenu_Tests.debug.xcconfig"; path = "Target Support Files/Pods-SSCustomSideMenu_Tests/Pods-SSCustomSideMenu_Tests.debug.xcconfig"; sourceTree = ""; }; 32 | 0F114C21C01B45F0F9402753 /* Pods-SSCustomSideMenu_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SSCustomSideMenu_Example.debug.xcconfig"; path = "Target Support Files/Pods-SSCustomSideMenu_Example/Pods-SSCustomSideMenu_Example.debug.xcconfig"; sourceTree = ""; }; 33 | 3E213BA253CB5E33938AFC94 /* Pods-SSCustomSideMenu_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SSCustomSideMenu_Tests.release.xcconfig"; path = "Target Support Files/Pods-SSCustomSideMenu_Tests/Pods-SSCustomSideMenu_Tests.release.xcconfig"; sourceTree = ""; }; 34 | 579DEAA47E7C660FE1F46420 /* Pods-SSCustomSideMenu_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SSCustomSideMenu_Example.release.xcconfig"; path = "Target Support Files/Pods-SSCustomSideMenu_Example/Pods-SSCustomSideMenu_Example.release.xcconfig"; sourceTree = ""; }; 35 | 607FACD01AFB9204008FA782 /* SSCustomSideMenu_Example.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SSCustomSideMenu_Example.app; sourceTree = BUILT_PRODUCTS_DIR; }; 36 | 607FACD41AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 37 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 38 | 607FACD71AFB9204008FA782 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 39 | 607FACDA1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 40 | 607FACDC1AFB9204008FA782 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 41 | 607FACDF1AFB9204008FA782 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 42 | 607FACE51AFB9204008FA782 /* SSCustomSideMenu_Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SSCustomSideMenu_Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 43 | 607FACEA1AFB9204008FA782 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 44 | 607FACEB1AFB9204008FA782 /* Tests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Tests.swift; sourceTree = ""; }; 45 | 95AB37C30D67A35013DA61CF /* Pods_SSCustomSideMenu_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SSCustomSideMenu_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 46 | B946BCBA8D7D5A8AFB5CF7E6 /* Pods_SSCustomSideMenu_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SSCustomSideMenu_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 47 | BB67953516F160E2F75B7CA6 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; 48 | CD623F53BCF5C6597F47E540 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; 49 | DCDB994C0336E4452FBD3921 /* SSCustomSideMenu.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = SSCustomSideMenu.podspec; path = ../SSCustomSideMenu.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 50 | /* End PBXFileReference section */ 51 | 52 | /* Begin PBXFrameworksBuildPhase section */ 53 | 607FACCD1AFB9204008FA782 /* Frameworks */ = { 54 | isa = PBXFrameworksBuildPhase; 55 | buildActionMask = 2147483647; 56 | files = ( 57 | 4F090985D3ACB330048A38FE /* Pods_SSCustomSideMenu_Example.framework in Frameworks */, 58 | ); 59 | runOnlyForDeploymentPostprocessing = 0; 60 | }; 61 | 607FACE21AFB9204008FA782 /* Frameworks */ = { 62 | isa = PBXFrameworksBuildPhase; 63 | buildActionMask = 2147483647; 64 | files = ( 65 | 5FB2682D9E646640B33F252D /* Pods_SSCustomSideMenu_Tests.framework in Frameworks */, 66 | ); 67 | runOnlyForDeploymentPostprocessing = 0; 68 | }; 69 | /* End PBXFrameworksBuildPhase section */ 70 | 71 | /* Begin PBXGroup section */ 72 | 55FCBFA622DAD376D43DF571 /* Frameworks */ = { 73 | isa = PBXGroup; 74 | children = ( 75 | 95AB37C30D67A35013DA61CF /* Pods_SSCustomSideMenu_Example.framework */, 76 | B946BCBA8D7D5A8AFB5CF7E6 /* Pods_SSCustomSideMenu_Tests.framework */, 77 | ); 78 | name = Frameworks; 79 | sourceTree = ""; 80 | }; 81 | 607FACC71AFB9204008FA782 = { 82 | isa = PBXGroup; 83 | children = ( 84 | 607FACF51AFB993E008FA782 /* Podspec Metadata */, 85 | 607FACD21AFB9204008FA782 /* Example for SSCustomSideMenu */, 86 | 607FACE81AFB9204008FA782 /* Tests */, 87 | 607FACD11AFB9204008FA782 /* Products */, 88 | AEE1CD53E38B6A28A4510C0E /* Pods */, 89 | 55FCBFA622DAD376D43DF571 /* Frameworks */, 90 | ); 91 | sourceTree = ""; 92 | }; 93 | 607FACD11AFB9204008FA782 /* Products */ = { 94 | isa = PBXGroup; 95 | children = ( 96 | 607FACD01AFB9204008FA782 /* SSCustomSideMenu_Example.app */, 97 | 607FACE51AFB9204008FA782 /* SSCustomSideMenu_Tests.xctest */, 98 | ); 99 | name = Products; 100 | sourceTree = ""; 101 | }; 102 | 607FACD21AFB9204008FA782 /* Example for SSCustomSideMenu */ = { 103 | isa = PBXGroup; 104 | children = ( 105 | 607FACD51AFB9204008FA782 /* AppDelegate.swift */, 106 | 607FACD71AFB9204008FA782 /* ViewController.swift */, 107 | 607FACD91AFB9204008FA782 /* Main.storyboard */, 108 | 607FACDC1AFB9204008FA782 /* Images.xcassets */, 109 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */, 110 | 607FACD31AFB9204008FA782 /* Supporting Files */, 111 | ); 112 | name = "Example for SSCustomSideMenu"; 113 | path = SSCustomSideMenu; 114 | sourceTree = ""; 115 | }; 116 | 607FACD31AFB9204008FA782 /* Supporting Files */ = { 117 | isa = PBXGroup; 118 | children = ( 119 | 607FACD41AFB9204008FA782 /* Info.plist */, 120 | ); 121 | name = "Supporting Files"; 122 | sourceTree = ""; 123 | }; 124 | 607FACE81AFB9204008FA782 /* Tests */ = { 125 | isa = PBXGroup; 126 | children = ( 127 | 607FACEB1AFB9204008FA782 /* Tests.swift */, 128 | 607FACE91AFB9204008FA782 /* Supporting Files */, 129 | ); 130 | path = Tests; 131 | sourceTree = ""; 132 | }; 133 | 607FACE91AFB9204008FA782 /* Supporting Files */ = { 134 | isa = PBXGroup; 135 | children = ( 136 | 607FACEA1AFB9204008FA782 /* Info.plist */, 137 | ); 138 | name = "Supporting Files"; 139 | sourceTree = ""; 140 | }; 141 | 607FACF51AFB993E008FA782 /* Podspec Metadata */ = { 142 | isa = PBXGroup; 143 | children = ( 144 | DCDB994C0336E4452FBD3921 /* SSCustomSideMenu.podspec */, 145 | CD623F53BCF5C6597F47E540 /* README.md */, 146 | BB67953516F160E2F75B7CA6 /* LICENSE */, 147 | ); 148 | name = "Podspec Metadata"; 149 | sourceTree = ""; 150 | }; 151 | AEE1CD53E38B6A28A4510C0E /* Pods */ = { 152 | isa = PBXGroup; 153 | children = ( 154 | 0F114C21C01B45F0F9402753 /* Pods-SSCustomSideMenu_Example.debug.xcconfig */, 155 | 579DEAA47E7C660FE1F46420 /* Pods-SSCustomSideMenu_Example.release.xcconfig */, 156 | 09A303B9FB9A5AB43D43F131 /* Pods-SSCustomSideMenu_Tests.debug.xcconfig */, 157 | 3E213BA253CB5E33938AFC94 /* Pods-SSCustomSideMenu_Tests.release.xcconfig */, 158 | ); 159 | path = Pods; 160 | sourceTree = ""; 161 | }; 162 | /* End PBXGroup section */ 163 | 164 | /* Begin PBXNativeTarget section */ 165 | 607FACCF1AFB9204008FA782 /* SSCustomSideMenu_Example */ = { 166 | isa = PBXNativeTarget; 167 | buildConfigurationList = 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "SSCustomSideMenu_Example" */; 168 | buildPhases = ( 169 | C6D894B20F706985B704AAE9 /* [CP] Check Pods Manifest.lock */, 170 | 607FACCC1AFB9204008FA782 /* Sources */, 171 | 607FACCD1AFB9204008FA782 /* Frameworks */, 172 | 607FACCE1AFB9204008FA782 /* Resources */, 173 | 5C55E2EAFE37C8D834CE11FD /* [CP] Embed Pods Frameworks */, 174 | ); 175 | buildRules = ( 176 | ); 177 | dependencies = ( 178 | ); 179 | name = SSCustomSideMenu_Example; 180 | productName = SSCustomSideMenu; 181 | productReference = 607FACD01AFB9204008FA782 /* SSCustomSideMenu_Example.app */; 182 | productType = "com.apple.product-type.application"; 183 | }; 184 | 607FACE41AFB9204008FA782 /* SSCustomSideMenu_Tests */ = { 185 | isa = PBXNativeTarget; 186 | buildConfigurationList = 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "SSCustomSideMenu_Tests" */; 187 | buildPhases = ( 188 | 44FE76F6B4344B2C423A4F81 /* [CP] Check Pods Manifest.lock */, 189 | 607FACE11AFB9204008FA782 /* Sources */, 190 | 607FACE21AFB9204008FA782 /* Frameworks */, 191 | 607FACE31AFB9204008FA782 /* Resources */, 192 | ); 193 | buildRules = ( 194 | ); 195 | dependencies = ( 196 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */, 197 | ); 198 | name = SSCustomSideMenu_Tests; 199 | productName = Tests; 200 | productReference = 607FACE51AFB9204008FA782 /* SSCustomSideMenu_Tests.xctest */; 201 | productType = "com.apple.product-type.bundle.unit-test"; 202 | }; 203 | /* End PBXNativeTarget section */ 204 | 205 | /* Begin PBXProject section */ 206 | 607FACC81AFB9204008FA782 /* Project object */ = { 207 | isa = PBXProject; 208 | attributes = { 209 | LastSwiftUpdateCheck = 0830; 210 | LastUpgradeCheck = 0830; 211 | ORGANIZATIONNAME = CocoaPods; 212 | TargetAttributes = { 213 | 607FACCF1AFB9204008FA782 = { 214 | CreatedOnToolsVersion = 6.3.1; 215 | LastSwiftMigration = 0900; 216 | }; 217 | 607FACE41AFB9204008FA782 = { 218 | CreatedOnToolsVersion = 6.3.1; 219 | LastSwiftMigration = 0900; 220 | TestTargetID = 607FACCF1AFB9204008FA782; 221 | }; 222 | }; 223 | }; 224 | buildConfigurationList = 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "SSCustomSideMenu" */; 225 | compatibilityVersion = "Xcode 3.2"; 226 | developmentRegion = English; 227 | hasScannedForEncodings = 0; 228 | knownRegions = ( 229 | English, 230 | en, 231 | Base, 232 | ); 233 | mainGroup = 607FACC71AFB9204008FA782; 234 | productRefGroup = 607FACD11AFB9204008FA782 /* Products */; 235 | projectDirPath = ""; 236 | projectRoot = ""; 237 | targets = ( 238 | 607FACCF1AFB9204008FA782 /* SSCustomSideMenu_Example */, 239 | 607FACE41AFB9204008FA782 /* SSCustomSideMenu_Tests */, 240 | ); 241 | }; 242 | /* End PBXProject section */ 243 | 244 | /* Begin PBXResourcesBuildPhase section */ 245 | 607FACCE1AFB9204008FA782 /* Resources */ = { 246 | isa = PBXResourcesBuildPhase; 247 | buildActionMask = 2147483647; 248 | files = ( 249 | 607FACDB1AFB9204008FA782 /* Main.storyboard in Resources */, 250 | 607FACE01AFB9204008FA782 /* LaunchScreen.xib in Resources */, 251 | 607FACDD1AFB9204008FA782 /* Images.xcassets in Resources */, 252 | ); 253 | runOnlyForDeploymentPostprocessing = 0; 254 | }; 255 | 607FACE31AFB9204008FA782 /* Resources */ = { 256 | isa = PBXResourcesBuildPhase; 257 | buildActionMask = 2147483647; 258 | files = ( 259 | ); 260 | runOnlyForDeploymentPostprocessing = 0; 261 | }; 262 | /* End PBXResourcesBuildPhase section */ 263 | 264 | /* Begin PBXShellScriptBuildPhase section */ 265 | 44FE76F6B4344B2C423A4F81 /* [CP] Check Pods Manifest.lock */ = { 266 | isa = PBXShellScriptBuildPhase; 267 | buildActionMask = 2147483647; 268 | files = ( 269 | ); 270 | inputFileListPaths = ( 271 | ); 272 | inputPaths = ( 273 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 274 | "${PODS_ROOT}/Manifest.lock", 275 | ); 276 | name = "[CP] Check Pods Manifest.lock"; 277 | outputFileListPaths = ( 278 | ); 279 | outputPaths = ( 280 | "$(DERIVED_FILE_DIR)/Pods-SSCustomSideMenu_Tests-checkManifestLockResult.txt", 281 | ); 282 | runOnlyForDeploymentPostprocessing = 0; 283 | shellPath = /bin/sh; 284 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 285 | showEnvVarsInLog = 0; 286 | }; 287 | 5C55E2EAFE37C8D834CE11FD /* [CP] Embed Pods Frameworks */ = { 288 | isa = PBXShellScriptBuildPhase; 289 | buildActionMask = 2147483647; 290 | files = ( 291 | ); 292 | inputPaths = ( 293 | "${PODS_ROOT}/Target Support Files/Pods-SSCustomSideMenu_Example/Pods-SSCustomSideMenu_Example-frameworks.sh", 294 | "${BUILT_PRODUCTS_DIR}/SSCustomSideMenu/SSCustomSideMenu.framework", 295 | ); 296 | name = "[CP] Embed Pods Frameworks"; 297 | outputPaths = ( 298 | "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SSCustomSideMenu.framework", 299 | ); 300 | runOnlyForDeploymentPostprocessing = 0; 301 | shellPath = /bin/sh; 302 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-SSCustomSideMenu_Example/Pods-SSCustomSideMenu_Example-frameworks.sh\"\n"; 303 | showEnvVarsInLog = 0; 304 | }; 305 | C6D894B20F706985B704AAE9 /* [CP] Check Pods Manifest.lock */ = { 306 | isa = PBXShellScriptBuildPhase; 307 | buildActionMask = 2147483647; 308 | files = ( 309 | ); 310 | inputFileListPaths = ( 311 | ); 312 | inputPaths = ( 313 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock", 314 | "${PODS_ROOT}/Manifest.lock", 315 | ); 316 | name = "[CP] Check Pods Manifest.lock"; 317 | outputFileListPaths = ( 318 | ); 319 | outputPaths = ( 320 | "$(DERIVED_FILE_DIR)/Pods-SSCustomSideMenu_Example-checkManifestLockResult.txt", 321 | ); 322 | runOnlyForDeploymentPostprocessing = 0; 323 | shellPath = /bin/sh; 324 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; 325 | showEnvVarsInLog = 0; 326 | }; 327 | /* End PBXShellScriptBuildPhase section */ 328 | 329 | /* Begin PBXSourcesBuildPhase section */ 330 | 607FACCC1AFB9204008FA782 /* Sources */ = { 331 | isa = PBXSourcesBuildPhase; 332 | buildActionMask = 2147483647; 333 | files = ( 334 | 607FACD81AFB9204008FA782 /* ViewController.swift in Sources */, 335 | 607FACD61AFB9204008FA782 /* AppDelegate.swift in Sources */, 336 | ); 337 | runOnlyForDeploymentPostprocessing = 0; 338 | }; 339 | 607FACE11AFB9204008FA782 /* Sources */ = { 340 | isa = PBXSourcesBuildPhase; 341 | buildActionMask = 2147483647; 342 | files = ( 343 | 607FACEC1AFB9204008FA782 /* Tests.swift in Sources */, 344 | ); 345 | runOnlyForDeploymentPostprocessing = 0; 346 | }; 347 | /* End PBXSourcesBuildPhase section */ 348 | 349 | /* Begin PBXTargetDependency section */ 350 | 607FACE71AFB9204008FA782 /* PBXTargetDependency */ = { 351 | isa = PBXTargetDependency; 352 | target = 607FACCF1AFB9204008FA782 /* SSCustomSideMenu_Example */; 353 | targetProxy = 607FACE61AFB9204008FA782 /* PBXContainerItemProxy */; 354 | }; 355 | /* End PBXTargetDependency section */ 356 | 357 | /* Begin PBXVariantGroup section */ 358 | 607FACD91AFB9204008FA782 /* Main.storyboard */ = { 359 | isa = PBXVariantGroup; 360 | children = ( 361 | 607FACDA1AFB9204008FA782 /* Base */, 362 | ); 363 | name = Main.storyboard; 364 | sourceTree = ""; 365 | }; 366 | 607FACDE1AFB9204008FA782 /* LaunchScreen.xib */ = { 367 | isa = PBXVariantGroup; 368 | children = ( 369 | 607FACDF1AFB9204008FA782 /* Base */, 370 | ); 371 | name = LaunchScreen.xib; 372 | sourceTree = ""; 373 | }; 374 | /* End PBXVariantGroup section */ 375 | 376 | /* Begin XCBuildConfiguration section */ 377 | 607FACED1AFB9204008FA782 /* Debug */ = { 378 | isa = XCBuildConfiguration; 379 | buildSettings = { 380 | ALWAYS_SEARCH_USER_PATHS = NO; 381 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 382 | CLANG_CXX_LIBRARY = "libc++"; 383 | CLANG_ENABLE_MODULES = YES; 384 | CLANG_ENABLE_OBJC_ARC = YES; 385 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 386 | CLANG_WARN_BOOL_CONVERSION = YES; 387 | CLANG_WARN_COMMA = YES; 388 | CLANG_WARN_CONSTANT_CONVERSION = YES; 389 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 390 | CLANG_WARN_EMPTY_BODY = YES; 391 | CLANG_WARN_ENUM_CONVERSION = YES; 392 | CLANG_WARN_INFINITE_RECURSION = YES; 393 | CLANG_WARN_INT_CONVERSION = YES; 394 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 395 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 396 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 397 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 398 | CLANG_WARN_STRICT_PROTOTYPES = YES; 399 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 400 | CLANG_WARN_UNREACHABLE_CODE = YES; 401 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 402 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 403 | COPY_PHASE_STRIP = NO; 404 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 405 | ENABLE_STRICT_OBJC_MSGSEND = YES; 406 | ENABLE_TESTABILITY = YES; 407 | GCC_C_LANGUAGE_STANDARD = gnu99; 408 | GCC_DYNAMIC_NO_PIC = NO; 409 | GCC_NO_COMMON_BLOCKS = YES; 410 | GCC_OPTIMIZATION_LEVEL = 0; 411 | GCC_PREPROCESSOR_DEFINITIONS = ( 412 | "DEBUG=1", 413 | "$(inherited)", 414 | ); 415 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 416 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 417 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 418 | GCC_WARN_UNDECLARED_SELECTOR = YES; 419 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 420 | GCC_WARN_UNUSED_FUNCTION = YES; 421 | GCC_WARN_UNUSED_VARIABLE = YES; 422 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 423 | MTL_ENABLE_DEBUG_INFO = YES; 424 | ONLY_ACTIVE_ARCH = YES; 425 | SDKROOT = iphoneos; 426 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 427 | }; 428 | name = Debug; 429 | }; 430 | 607FACEE1AFB9204008FA782 /* Release */ = { 431 | isa = XCBuildConfiguration; 432 | buildSettings = { 433 | ALWAYS_SEARCH_USER_PATHS = NO; 434 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 435 | CLANG_CXX_LIBRARY = "libc++"; 436 | CLANG_ENABLE_MODULES = YES; 437 | CLANG_ENABLE_OBJC_ARC = YES; 438 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 439 | CLANG_WARN_BOOL_CONVERSION = YES; 440 | CLANG_WARN_COMMA = YES; 441 | CLANG_WARN_CONSTANT_CONVERSION = YES; 442 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 443 | CLANG_WARN_EMPTY_BODY = YES; 444 | CLANG_WARN_ENUM_CONVERSION = YES; 445 | CLANG_WARN_INFINITE_RECURSION = YES; 446 | CLANG_WARN_INT_CONVERSION = YES; 447 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 448 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 449 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 450 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 451 | CLANG_WARN_STRICT_PROTOTYPES = YES; 452 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 453 | CLANG_WARN_UNREACHABLE_CODE = YES; 454 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 455 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 456 | COPY_PHASE_STRIP = NO; 457 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 458 | ENABLE_NS_ASSERTIONS = NO; 459 | ENABLE_STRICT_OBJC_MSGSEND = YES; 460 | GCC_C_LANGUAGE_STANDARD = gnu99; 461 | GCC_NO_COMMON_BLOCKS = YES; 462 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 463 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 464 | GCC_WARN_UNDECLARED_SELECTOR = YES; 465 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 466 | GCC_WARN_UNUSED_FUNCTION = YES; 467 | GCC_WARN_UNUSED_VARIABLE = YES; 468 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 469 | MTL_ENABLE_DEBUG_INFO = NO; 470 | SDKROOT = iphoneos; 471 | SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; 472 | VALIDATE_PRODUCT = YES; 473 | }; 474 | name = Release; 475 | }; 476 | 607FACF01AFB9204008FA782 /* Debug */ = { 477 | isa = XCBuildConfiguration; 478 | baseConfigurationReference = 0F114C21C01B45F0F9402753 /* Pods-SSCustomSideMenu_Example.debug.xcconfig */; 479 | buildSettings = { 480 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 481 | INFOPLIST_FILE = SSCustomSideMenu/Info.plist; 482 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 483 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 484 | MODULE_NAME = ExampleApp; 485 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 486 | PRODUCT_NAME = "$(TARGET_NAME)"; 487 | SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; 488 | SUPPORTS_MACCATALYST = NO; 489 | SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES; 490 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 491 | SWIFT_VERSION = 4.0; 492 | TARGETED_DEVICE_FAMILY = "1,2"; 493 | }; 494 | name = Debug; 495 | }; 496 | 607FACF11AFB9204008FA782 /* Release */ = { 497 | isa = XCBuildConfiguration; 498 | baseConfigurationReference = 579DEAA47E7C660FE1F46420 /* Pods-SSCustomSideMenu_Example.release.xcconfig */; 499 | buildSettings = { 500 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 501 | INFOPLIST_FILE = SSCustomSideMenu/Info.plist; 502 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 503 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 504 | MODULE_NAME = ExampleApp; 505 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.$(PRODUCT_NAME:rfc1034identifier)"; 506 | PRODUCT_NAME = "$(TARGET_NAME)"; 507 | SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; 508 | SUPPORTS_MACCATALYST = NO; 509 | SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = YES; 510 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 511 | SWIFT_VERSION = 4.0; 512 | TARGETED_DEVICE_FAMILY = "1,2"; 513 | }; 514 | name = Release; 515 | }; 516 | 607FACF31AFB9204008FA782 /* Debug */ = { 517 | isa = XCBuildConfiguration; 518 | baseConfigurationReference = 09A303B9FB9A5AB43D43F131 /* Pods-SSCustomSideMenu_Tests.debug.xcconfig */; 519 | buildSettings = { 520 | FRAMEWORK_SEARCH_PATHS = ( 521 | "$(PLATFORM_DIR)/Developer/Library/Frameworks", 522 | "$(inherited)", 523 | ); 524 | GCC_PREPROCESSOR_DEFINITIONS = ( 525 | "DEBUG=1", 526 | "$(inherited)", 527 | ); 528 | INFOPLIST_FILE = Tests/Info.plist; 529 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 530 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 531 | PRODUCT_NAME = "$(TARGET_NAME)"; 532 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 533 | SWIFT_VERSION = 4.0; 534 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SSCustomSideMenu_Example.app/SSCustomSideMenu_Example"; 535 | }; 536 | name = Debug; 537 | }; 538 | 607FACF41AFB9204008FA782 /* Release */ = { 539 | isa = XCBuildConfiguration; 540 | baseConfigurationReference = 3E213BA253CB5E33938AFC94 /* Pods-SSCustomSideMenu_Tests.release.xcconfig */; 541 | buildSettings = { 542 | FRAMEWORK_SEARCH_PATHS = ( 543 | "$(PLATFORM_DIR)/Developer/Library/Frameworks", 544 | "$(inherited)", 545 | ); 546 | INFOPLIST_FILE = Tests/Info.plist; 547 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 548 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.$(PRODUCT_NAME:rfc1034identifier)"; 549 | PRODUCT_NAME = "$(TARGET_NAME)"; 550 | SWIFT_SWIFT3_OBJC_INFERENCE = Default; 551 | SWIFT_VERSION = 4.0; 552 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SSCustomSideMenu_Example.app/SSCustomSideMenu_Example"; 553 | }; 554 | name = Release; 555 | }; 556 | /* End XCBuildConfiguration section */ 557 | 558 | /* Begin XCConfigurationList section */ 559 | 607FACCB1AFB9204008FA782 /* Build configuration list for PBXProject "SSCustomSideMenu" */ = { 560 | isa = XCConfigurationList; 561 | buildConfigurations = ( 562 | 607FACED1AFB9204008FA782 /* Debug */, 563 | 607FACEE1AFB9204008FA782 /* Release */, 564 | ); 565 | defaultConfigurationIsVisible = 0; 566 | defaultConfigurationName = Release; 567 | }; 568 | 607FACEF1AFB9204008FA782 /* Build configuration list for PBXNativeTarget "SSCustomSideMenu_Example" */ = { 569 | isa = XCConfigurationList; 570 | buildConfigurations = ( 571 | 607FACF01AFB9204008FA782 /* Debug */, 572 | 607FACF11AFB9204008FA782 /* Release */, 573 | ); 574 | defaultConfigurationIsVisible = 0; 575 | defaultConfigurationName = Release; 576 | }; 577 | 607FACF21AFB9204008FA782 /* Build configuration list for PBXNativeTarget "SSCustomSideMenu_Tests" */ = { 578 | isa = XCConfigurationList; 579 | buildConfigurations = ( 580 | 607FACF31AFB9204008FA782 /* Debug */, 581 | 607FACF41AFB9204008FA782 /* Release */, 582 | ); 583 | defaultConfigurationIsVisible = 0; 584 | defaultConfigurationName = Release; 585 | }; 586 | /* End XCConfigurationList section */ 587 | }; 588 | rootObject = 607FACC81AFB9204008FA782 /* Project object */; 589 | } 590 | -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 0A749A1FCEF9203ACEBB37E0D12AB581 /* SSSideMenuContainerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 271D004E2FDF66B53A783559790335FF /* SSSideMenuContainerViewController.swift */; }; 11 | 28478B7FE61351FD055578E97BAA0880 /* SSCustomSideMenu-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E2B8D5AA3795AC10D65DDC76D4F0773 /* SSCustomSideMenu-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 12 | 46C7EFF6E9C68B7BA7D1361F8A80463E /* Pods-SSCustomSideMenu_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E6DD229FFD1AE4C79A0B591F39AB956C /* Pods-SSCustomSideMenu_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 13 | 53E9A4A77BC71771744092313FD07E55 /* Protocols.swift in Sources */ = {isa = PBXBuildFile; fileRef = A29D2845828EE0FD29522922A17CD7BE /* Protocols.swift */; }; 14 | 5A95E75F4A1B65D1F2420C1699172D5C /* Enums.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1DB466AC1CC5F42A42A2C8D35890FE5 /* Enums.swift */; }; 15 | 6286684ECDE32724E474C4E129035E69 /* Pods-SSCustomSideMenu_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F483287E84F819D10C3495C69B023C6 /* Pods-SSCustomSideMenu_Tests-dummy.m */; }; 16 | 65D943F209993F69EC3F452C38A80E96 /* SSMenuCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4358C3D610A6F6227EAE324C691CA64 /* SSMenuCell.swift */; }; 17 | 7E72263F1AF00FBE48BD2648BAA9B703 /* Dynamic.swift in Sources */ = {isa = PBXBuildFile; fileRef = 93E24734E31BF8F8A6F57ACFB880FC72 /* Dynamic.swift */; }; 18 | 8007ED555DC6717C55E0A99A2B34C23F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 19 | 8D4DA0EB27DEC9B23253B02FF238D680 /* Config.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55C47A5496AC17BC8F70940DC358FCBF /* Config.swift */; }; 20 | 968271B76D938B7BE5ABDEBFA53B7EDB /* Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = E29DD6C2E9E58086EEE476EED017D5D3 /* Extensions.swift */; }; 21 | B383F92D6D93765A5E48E547E622CB01 /* SSCustomSideMenu-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AA653BC1CA526CAF7787A8BC2DD9512E /* SSCustomSideMenu-dummy.m */; }; 22 | B42085EB9AF74E8E165CC53B7533E4CC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 23 | C9C9F7F3EB280A65471DA7903FF5A127 /* Pods-SSCustomSideMenu_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 03F5F0A0B650AA1AFEFD6A4F271585AE /* Pods-SSCustomSideMenu_Example-dummy.m */; }; 24 | D530B0590EAECE8EF5F08F9C93B8B79F /* SSMenuButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D9B4927E76C33BD9B5FA2143A07C9FB /* SSMenuButton.swift */; }; 25 | D5ABE7E6445843F6E5221EBAC3D30B00 /* SSMenuTableView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 522E0CC67B6B707989EFC4E5F8689512 /* SSMenuTableView.swift */; }; 26 | E314309C95EDCE83DD2980E916119FB8 /* Pods-SSCustomSideMenu_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 291B107E27C57A1C4A72067F18837A8D /* Pods-SSCustomSideMenu_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 27 | E79736DACB6810DC968BA080BBE80CBD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */; }; 28 | /* End PBXBuildFile section */ 29 | 30 | /* Begin PBXContainerItemProxy section */ 31 | 6ACDCCFF3E6F4C5ACB859746AA733C29 /* PBXContainerItemProxy */ = { 32 | isa = PBXContainerItemProxy; 33 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 34 | proxyType = 1; 35 | remoteGlobalIDString = 724D0C26F0CE46E13EBC8EBEFFFFEABC; 36 | remoteInfo = SSCustomSideMenu; 37 | }; 38 | 7938F4F4F1CE72630924278D9F94C976 /* PBXContainerItemProxy */ = { 39 | isa = PBXContainerItemProxy; 40 | containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; 41 | proxyType = 1; 42 | remoteGlobalIDString = ED5A9AD9F1C60C3012557ED5C9EE6D50; 43 | remoteInfo = "Pods-SSCustomSideMenu_Example"; 44 | }; 45 | /* End PBXContainerItemProxy section */ 46 | 47 | /* Begin PBXFileReference section */ 48 | 03F5F0A0B650AA1AFEFD6A4F271585AE /* Pods-SSCustomSideMenu_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SSCustomSideMenu_Example-dummy.m"; sourceTree = ""; }; 49 | 0F9C0B61AD2473A173DDA9FEC160B18F /* SSCustomSideMenu-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SSCustomSideMenu-prefix.pch"; sourceTree = ""; }; 50 | 191F9C626A918B04F1265E7888D66D81 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; 51 | 271D004E2FDF66B53A783559790335FF /* SSSideMenuContainerViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SSSideMenuContainerViewController.swift; path = SSCustomSideMenu/Classes/SSSideMenuContainerViewController.swift; sourceTree = ""; }; 52 | 291B107E27C57A1C4A72067F18837A8D /* Pods-SSCustomSideMenu_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SSCustomSideMenu_Tests-umbrella.h"; sourceTree = ""; }; 53 | 2C3605C2D80BCEEB55D8241C6B63EF23 /* SSCustomSideMenu.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SSCustomSideMenu.debug.xcconfig; sourceTree = ""; }; 54 | 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.2.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 55 | 32BA6C91245CDB9040E1A03E3927ED1A /* SSCustomSideMenu-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SSCustomSideMenu-Info.plist"; sourceTree = ""; }; 56 | 333D0828DAD524B31861F25E64CB19B6 /* SSCustomSideMenu.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SSCustomSideMenu.framework; path = SSCustomSideMenu.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 57 | 3E2B8D5AA3795AC10D65DDC76D4F0773 /* SSCustomSideMenu-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SSCustomSideMenu-umbrella.h"; sourceTree = ""; }; 58 | 426139D862CF0C5A8DADE3CAF5CE0131 /* Pods-SSCustomSideMenu_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SSCustomSideMenu_Example.debug.xcconfig"; sourceTree = ""; }; 59 | 522E0CC67B6B707989EFC4E5F8689512 /* SSMenuTableView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SSMenuTableView.swift; path = SSCustomSideMenu/Classes/SSMenuTableView.swift; sourceTree = ""; }; 60 | 528CCB44C4762AE24DB77141ED03B98E /* Pods-SSCustomSideMenu_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SSCustomSideMenu_Example.release.xcconfig"; sourceTree = ""; }; 61 | 55C47A5496AC17BC8F70940DC358FCBF /* Config.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Config.swift; path = SSCustomSideMenu/Classes/Config.swift; sourceTree = ""; }; 62 | 5D56776AD90FA7B0B6AB306396FE640B /* Pods-SSCustomSideMenu_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SSCustomSideMenu_Example-acknowledgements.markdown"; sourceTree = ""; }; 63 | 5F44E7AB0BFD476E7F94CD4B3E94F9EF /* SSCustomSideMenu.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SSCustomSideMenu.release.xcconfig; sourceTree = ""; }; 64 | 6C009688B16226D6E2192E730728865B /* SSCustomSideMenu.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SSCustomSideMenu.modulemap; sourceTree = ""; }; 65 | 6D9B4927E76C33BD9B5FA2143A07C9FB /* SSMenuButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SSMenuButton.swift; path = SSCustomSideMenu/Classes/SSMenuButton.swift; sourceTree = ""; }; 66 | 6F2A4C7C84890496A95F916A5BFB931D /* Pods-SSCustomSideMenu_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SSCustomSideMenu_Tests.debug.xcconfig"; sourceTree = ""; }; 67 | 72256D52EAC382EB705D1715EC1243AF /* Pods-SSCustomSideMenu_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SSCustomSideMenu_Tests.release.xcconfig"; sourceTree = ""; }; 68 | 731440F8F571CFEEC31C8FD910F70D88 /* Pods-SSCustomSideMenu_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SSCustomSideMenu_Tests-acknowledgements.plist"; sourceTree = ""; }; 69 | 8134E13A4167736DCD67B7A85C6AA2B5 /* Pods_SSCustomSideMenu_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_SSCustomSideMenu_Tests.framework; path = "Pods-SSCustomSideMenu_Tests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 70 | 8F483287E84F819D10C3495C69B023C6 /* Pods-SSCustomSideMenu_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SSCustomSideMenu_Tests-dummy.m"; sourceTree = ""; }; 71 | 90E5D4D7D334DB422F2772411AE8A7B8 /* Pods-SSCustomSideMenu_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-SSCustomSideMenu_Tests.modulemap"; sourceTree = ""; }; 72 | 934C6DCF3CD209B9DF7A1E19733C0958 /* Pods-SSCustomSideMenu_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SSCustomSideMenu_Example-acknowledgements.plist"; sourceTree = ""; }; 73 | 93E24734E31BF8F8A6F57ACFB880FC72 /* Dynamic.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Dynamic.swift; path = SSCustomSideMenu/Classes/Dynamic.swift; sourceTree = ""; }; 74 | 93F715CB11015119A37B87D89EAC9642 /* Pods-SSCustomSideMenu_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-SSCustomSideMenu_Tests-acknowledgements.markdown"; sourceTree = ""; }; 75 | 965BCCEF30ABA22AA831966392AD2CF2 /* SSCustomSideMenu.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = SSCustomSideMenu.podspec; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 76 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 77 | 9EED29FCE571286AA06A1F0DFE4F8525 /* Pods_SSCustomSideMenu_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_SSCustomSideMenu_Example.framework; path = "Pods-SSCustomSideMenu_Example.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; 78 | A29D2845828EE0FD29522922A17CD7BE /* Protocols.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Protocols.swift; path = SSCustomSideMenu/Classes/Protocols.swift; sourceTree = ""; }; 79 | AA653BC1CA526CAF7787A8BC2DD9512E /* SSCustomSideMenu-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SSCustomSideMenu-dummy.m"; sourceTree = ""; }; 80 | BA88B13CFE2EC616D263840BF2E9D6D9 /* Pods-SSCustomSideMenu_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SSCustomSideMenu_Tests-Info.plist"; sourceTree = ""; }; 81 | C0C4262D172A8E7A9D8912DA35C7CECD /* Pods-SSCustomSideMenu_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-SSCustomSideMenu_Example-Info.plist"; sourceTree = ""; }; 82 | C1DB466AC1CC5F42A42A2C8D35890FE5 /* Enums.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Enums.swift; path = SSCustomSideMenu/Classes/Enums.swift; sourceTree = ""; }; 83 | C1F6348E898FA22D0C865F518E742D6E /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; 84 | D2A896083069D7B8D6088CF4E7A4C2B5 /* Pods-SSCustomSideMenu_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-SSCustomSideMenu_Example-frameworks.sh"; sourceTree = ""; }; 85 | E29DD6C2E9E58086EEE476EED017D5D3 /* Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Extensions.swift; path = SSCustomSideMenu/Classes/Extensions.swift; sourceTree = ""; }; 86 | E6DD229FFD1AE4C79A0B591F39AB956C /* Pods-SSCustomSideMenu_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SSCustomSideMenu_Example-umbrella.h"; sourceTree = ""; }; 87 | EB782F76914049889A5A9A06DC012D13 /* Pods-SSCustomSideMenu_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-SSCustomSideMenu_Example.modulemap"; sourceTree = ""; }; 88 | F4358C3D610A6F6227EAE324C691CA64 /* SSMenuCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SSMenuCell.swift; path = SSCustomSideMenu/Classes/SSMenuCell.swift; sourceTree = ""; }; 89 | /* End PBXFileReference section */ 90 | 91 | /* Begin PBXFrameworksBuildPhase section */ 92 | 10E7AD4F8097F133617C728AF3FF543D /* Frameworks */ = { 93 | isa = PBXFrameworksBuildPhase; 94 | buildActionMask = 2147483647; 95 | files = ( 96 | 8007ED555DC6717C55E0A99A2B34C23F /* Foundation.framework in Frameworks */, 97 | ); 98 | runOnlyForDeploymentPostprocessing = 0; 99 | }; 100 | 5A64118118C4337F279367D2DB207159 /* Frameworks */ = { 101 | isa = PBXFrameworksBuildPhase; 102 | buildActionMask = 2147483647; 103 | files = ( 104 | E79736DACB6810DC968BA080BBE80CBD /* Foundation.framework in Frameworks */, 105 | ); 106 | runOnlyForDeploymentPostprocessing = 0; 107 | }; 108 | BB405D45EAD30CAF0CA43E10CDF90251 /* Frameworks */ = { 109 | isa = PBXFrameworksBuildPhase; 110 | buildActionMask = 2147483647; 111 | files = ( 112 | B42085EB9AF74E8E165CC53B7533E4CC /* Foundation.framework in Frameworks */, 113 | ); 114 | runOnlyForDeploymentPostprocessing = 0; 115 | }; 116 | /* End PBXFrameworksBuildPhase section */ 117 | 118 | /* Begin PBXGroup section */ 119 | 1B1B615ECDF86F1A1BF6993C16A230C6 /* SSCustomSideMenu */ = { 120 | isa = PBXGroup; 121 | children = ( 122 | 55C47A5496AC17BC8F70940DC358FCBF /* Config.swift */, 123 | 93E24734E31BF8F8A6F57ACFB880FC72 /* Dynamic.swift */, 124 | C1DB466AC1CC5F42A42A2C8D35890FE5 /* Enums.swift */, 125 | E29DD6C2E9E58086EEE476EED017D5D3 /* Extensions.swift */, 126 | A29D2845828EE0FD29522922A17CD7BE /* Protocols.swift */, 127 | 6D9B4927E76C33BD9B5FA2143A07C9FB /* SSMenuButton.swift */, 128 | F4358C3D610A6F6227EAE324C691CA64 /* SSMenuCell.swift */, 129 | 522E0CC67B6B707989EFC4E5F8689512 /* SSMenuTableView.swift */, 130 | 271D004E2FDF66B53A783559790335FF /* SSSideMenuContainerViewController.swift */, 131 | CE3DEEBE96EFDB0DEB1D55F68A6B94F8 /* Pod */, 132 | FF5E8D49C4BEB5FCB7F9452640F901BC /* Support Files */, 133 | ); 134 | name = SSCustomSideMenu; 135 | path = ../..; 136 | sourceTree = ""; 137 | }; 138 | 2668A1EE0310092B6F387687DCACA998 /* Targets Support Files */ = { 139 | isa = PBXGroup; 140 | children = ( 141 | C32DB1F63392DE65ECED4E8C91845757 /* Pods-SSCustomSideMenu_Example */, 142 | 3CC98B3519284C398D6CAF71F798F543 /* Pods-SSCustomSideMenu_Tests */, 143 | ); 144 | name = "Targets Support Files"; 145 | sourceTree = ""; 146 | }; 147 | 3CC98B3519284C398D6CAF71F798F543 /* Pods-SSCustomSideMenu_Tests */ = { 148 | isa = PBXGroup; 149 | children = ( 150 | 90E5D4D7D334DB422F2772411AE8A7B8 /* Pods-SSCustomSideMenu_Tests.modulemap */, 151 | 93F715CB11015119A37B87D89EAC9642 /* Pods-SSCustomSideMenu_Tests-acknowledgements.markdown */, 152 | 731440F8F571CFEEC31C8FD910F70D88 /* Pods-SSCustomSideMenu_Tests-acknowledgements.plist */, 153 | 8F483287E84F819D10C3495C69B023C6 /* Pods-SSCustomSideMenu_Tests-dummy.m */, 154 | BA88B13CFE2EC616D263840BF2E9D6D9 /* Pods-SSCustomSideMenu_Tests-Info.plist */, 155 | 291B107E27C57A1C4A72067F18837A8D /* Pods-SSCustomSideMenu_Tests-umbrella.h */, 156 | 6F2A4C7C84890496A95F916A5BFB931D /* Pods-SSCustomSideMenu_Tests.debug.xcconfig */, 157 | 72256D52EAC382EB705D1715EC1243AF /* Pods-SSCustomSideMenu_Tests.release.xcconfig */, 158 | ); 159 | name = "Pods-SSCustomSideMenu_Tests"; 160 | path = "Target Support Files/Pods-SSCustomSideMenu_Tests"; 161 | sourceTree = ""; 162 | }; 163 | C0834CEBB1379A84116EF29F93051C60 /* iOS */ = { 164 | isa = PBXGroup; 165 | children = ( 166 | 3212113385A8FBBDB272BD23C409FF61 /* Foundation.framework */, 167 | ); 168 | name = iOS; 169 | sourceTree = ""; 170 | }; 171 | C32DB1F63392DE65ECED4E8C91845757 /* Pods-SSCustomSideMenu_Example */ = { 172 | isa = PBXGroup; 173 | children = ( 174 | EB782F76914049889A5A9A06DC012D13 /* Pods-SSCustomSideMenu_Example.modulemap */, 175 | 5D56776AD90FA7B0B6AB306396FE640B /* Pods-SSCustomSideMenu_Example-acknowledgements.markdown */, 176 | 934C6DCF3CD209B9DF7A1E19733C0958 /* Pods-SSCustomSideMenu_Example-acknowledgements.plist */, 177 | 03F5F0A0B650AA1AFEFD6A4F271585AE /* Pods-SSCustomSideMenu_Example-dummy.m */, 178 | D2A896083069D7B8D6088CF4E7A4C2B5 /* Pods-SSCustomSideMenu_Example-frameworks.sh */, 179 | C0C4262D172A8E7A9D8912DA35C7CECD /* Pods-SSCustomSideMenu_Example-Info.plist */, 180 | E6DD229FFD1AE4C79A0B591F39AB956C /* Pods-SSCustomSideMenu_Example-umbrella.h */, 181 | 426139D862CF0C5A8DADE3CAF5CE0131 /* Pods-SSCustomSideMenu_Example.debug.xcconfig */, 182 | 528CCB44C4762AE24DB77141ED03B98E /* Pods-SSCustomSideMenu_Example.release.xcconfig */, 183 | ); 184 | name = "Pods-SSCustomSideMenu_Example"; 185 | path = "Target Support Files/Pods-SSCustomSideMenu_Example"; 186 | sourceTree = ""; 187 | }; 188 | CE3DEEBE96EFDB0DEB1D55F68A6B94F8 /* Pod */ = { 189 | isa = PBXGroup; 190 | children = ( 191 | 191F9C626A918B04F1265E7888D66D81 /* LICENSE */, 192 | C1F6348E898FA22D0C865F518E742D6E /* README.md */, 193 | 965BCCEF30ABA22AA831966392AD2CF2 /* SSCustomSideMenu.podspec */, 194 | ); 195 | name = Pod; 196 | sourceTree = ""; 197 | }; 198 | CF1408CF629C7361332E53B88F7BD30C = { 199 | isa = PBXGroup; 200 | children = ( 201 | 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, 202 | EA4F15DE9155BF6CBE476E0A671A4F1E /* Development Pods */, 203 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */, 204 | DCA959F66C819983FCB1E028188FF793 /* Products */, 205 | 2668A1EE0310092B6F387687DCACA998 /* Targets Support Files */, 206 | ); 207 | sourceTree = ""; 208 | }; 209 | D210D550F4EA176C3123ED886F8F87F5 /* Frameworks */ = { 210 | isa = PBXGroup; 211 | children = ( 212 | C0834CEBB1379A84116EF29F93051C60 /* iOS */, 213 | ); 214 | name = Frameworks; 215 | sourceTree = ""; 216 | }; 217 | DCA959F66C819983FCB1E028188FF793 /* Products */ = { 218 | isa = PBXGroup; 219 | children = ( 220 | 9EED29FCE571286AA06A1F0DFE4F8525 /* Pods_SSCustomSideMenu_Example.framework */, 221 | 8134E13A4167736DCD67B7A85C6AA2B5 /* Pods_SSCustomSideMenu_Tests.framework */, 222 | 333D0828DAD524B31861F25E64CB19B6 /* SSCustomSideMenu.framework */, 223 | ); 224 | name = Products; 225 | sourceTree = ""; 226 | }; 227 | EA4F15DE9155BF6CBE476E0A671A4F1E /* Development Pods */ = { 228 | isa = PBXGroup; 229 | children = ( 230 | 1B1B615ECDF86F1A1BF6993C16A230C6 /* SSCustomSideMenu */, 231 | ); 232 | name = "Development Pods"; 233 | sourceTree = ""; 234 | }; 235 | FF5E8D49C4BEB5FCB7F9452640F901BC /* Support Files */ = { 236 | isa = PBXGroup; 237 | children = ( 238 | 6C009688B16226D6E2192E730728865B /* SSCustomSideMenu.modulemap */, 239 | AA653BC1CA526CAF7787A8BC2DD9512E /* SSCustomSideMenu-dummy.m */, 240 | 32BA6C91245CDB9040E1A03E3927ED1A /* SSCustomSideMenu-Info.plist */, 241 | 0F9C0B61AD2473A173DDA9FEC160B18F /* SSCustomSideMenu-prefix.pch */, 242 | 3E2B8D5AA3795AC10D65DDC76D4F0773 /* SSCustomSideMenu-umbrella.h */, 243 | 2C3605C2D80BCEEB55D8241C6B63EF23 /* SSCustomSideMenu.debug.xcconfig */, 244 | 5F44E7AB0BFD476E7F94CD4B3E94F9EF /* SSCustomSideMenu.release.xcconfig */, 245 | ); 246 | name = "Support Files"; 247 | path = "Example/Pods/Target Support Files/SSCustomSideMenu"; 248 | sourceTree = ""; 249 | }; 250 | /* End PBXGroup section */ 251 | 252 | /* Begin PBXHeadersBuildPhase section */ 253 | 503BF3F006CAD8AD7F35036F0B614F22 /* Headers */ = { 254 | isa = PBXHeadersBuildPhase; 255 | buildActionMask = 2147483647; 256 | files = ( 257 | 46C7EFF6E9C68B7BA7D1361F8A80463E /* Pods-SSCustomSideMenu_Example-umbrella.h in Headers */, 258 | ); 259 | runOnlyForDeploymentPostprocessing = 0; 260 | }; 261 | 8FC1D2E755905BD6512ED30934011051 /* Headers */ = { 262 | isa = PBXHeadersBuildPhase; 263 | buildActionMask = 2147483647; 264 | files = ( 265 | 28478B7FE61351FD055578E97BAA0880 /* SSCustomSideMenu-umbrella.h in Headers */, 266 | ); 267 | runOnlyForDeploymentPostprocessing = 0; 268 | }; 269 | F4C92D4A8EBDBC6D4C229FCC47EBFC0B /* Headers */ = { 270 | isa = PBXHeadersBuildPhase; 271 | buildActionMask = 2147483647; 272 | files = ( 273 | E314309C95EDCE83DD2980E916119FB8 /* Pods-SSCustomSideMenu_Tests-umbrella.h in Headers */, 274 | ); 275 | runOnlyForDeploymentPostprocessing = 0; 276 | }; 277 | /* End PBXHeadersBuildPhase section */ 278 | 279 | /* Begin PBXNativeTarget section */ 280 | 3C648E1847D26930FAF23F1C50365F7E /* Pods-SSCustomSideMenu_Tests */ = { 281 | isa = PBXNativeTarget; 282 | buildConfigurationList = 0F7528FE1F527B3ED6365F343FB51845 /* Build configuration list for PBXNativeTarget "Pods-SSCustomSideMenu_Tests" */; 283 | buildPhases = ( 284 | F4C92D4A8EBDBC6D4C229FCC47EBFC0B /* Headers */, 285 | 88D70443BDF4FB966759E9B3E4D12476 /* Sources */, 286 | 5A64118118C4337F279367D2DB207159 /* Frameworks */, 287 | 17C1BE6244B6A5E008CF32B3DF832378 /* Resources */, 288 | ); 289 | buildRules = ( 290 | ); 291 | dependencies = ( 292 | 336AB1146660F9421845BA8381477B8E /* PBXTargetDependency */, 293 | ); 294 | name = "Pods-SSCustomSideMenu_Tests"; 295 | productName = "Pods-SSCustomSideMenu_Tests"; 296 | productReference = 8134E13A4167736DCD67B7A85C6AA2B5 /* Pods_SSCustomSideMenu_Tests.framework */; 297 | productType = "com.apple.product-type.framework"; 298 | }; 299 | 724D0C26F0CE46E13EBC8EBEFFFFEABC /* SSCustomSideMenu */ = { 300 | isa = PBXNativeTarget; 301 | buildConfigurationList = BD32E572A38619C76EF964ADDC99C4A1 /* Build configuration list for PBXNativeTarget "SSCustomSideMenu" */; 302 | buildPhases = ( 303 | 8FC1D2E755905BD6512ED30934011051 /* Headers */, 304 | 2147B87F1DE1BD81560EB5E3E166B93E /* Sources */, 305 | 10E7AD4F8097F133617C728AF3FF543D /* Frameworks */, 306 | 597A71B119B7A887B4DA936E849DE2B5 /* Resources */, 307 | ); 308 | buildRules = ( 309 | ); 310 | dependencies = ( 311 | ); 312 | name = SSCustomSideMenu; 313 | productName = SSCustomSideMenu; 314 | productReference = 333D0828DAD524B31861F25E64CB19B6 /* SSCustomSideMenu.framework */; 315 | productType = "com.apple.product-type.framework"; 316 | }; 317 | ED5A9AD9F1C60C3012557ED5C9EE6D50 /* Pods-SSCustomSideMenu_Example */ = { 318 | isa = PBXNativeTarget; 319 | buildConfigurationList = 9834FFD4E36F32A70EBE7718A0442FE7 /* Build configuration list for PBXNativeTarget "Pods-SSCustomSideMenu_Example" */; 320 | buildPhases = ( 321 | 503BF3F006CAD8AD7F35036F0B614F22 /* Headers */, 322 | 42F4C878FB04F42C511A240F43275444 /* Sources */, 323 | BB405D45EAD30CAF0CA43E10CDF90251 /* Frameworks */, 324 | 46636CEB3DBF3F8C8F00C4C3B299BA1F /* Resources */, 325 | ); 326 | buildRules = ( 327 | ); 328 | dependencies = ( 329 | 6425A8D2271BECF6BA8A304CD6147C92 /* PBXTargetDependency */, 330 | ); 331 | name = "Pods-SSCustomSideMenu_Example"; 332 | productName = "Pods-SSCustomSideMenu_Example"; 333 | productReference = 9EED29FCE571286AA06A1F0DFE4F8525 /* Pods_SSCustomSideMenu_Example.framework */; 334 | productType = "com.apple.product-type.framework"; 335 | }; 336 | /* End PBXNativeTarget section */ 337 | 338 | /* Begin PBXProject section */ 339 | BFDFE7DC352907FC980B868725387E98 /* Project object */ = { 340 | isa = PBXProject; 341 | attributes = { 342 | LastSwiftUpdateCheck = 1100; 343 | LastUpgradeCheck = 1100; 344 | }; 345 | buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */; 346 | compatibilityVersion = "Xcode 3.2"; 347 | developmentRegion = en; 348 | hasScannedForEncodings = 0; 349 | knownRegions = ( 350 | en, 351 | Base, 352 | ); 353 | mainGroup = CF1408CF629C7361332E53B88F7BD30C; 354 | productRefGroup = DCA959F66C819983FCB1E028188FF793 /* Products */; 355 | projectDirPath = ""; 356 | projectRoot = ""; 357 | targets = ( 358 | ED5A9AD9F1C60C3012557ED5C9EE6D50 /* Pods-SSCustomSideMenu_Example */, 359 | 3C648E1847D26930FAF23F1C50365F7E /* Pods-SSCustomSideMenu_Tests */, 360 | 724D0C26F0CE46E13EBC8EBEFFFFEABC /* SSCustomSideMenu */, 361 | ); 362 | }; 363 | /* End PBXProject section */ 364 | 365 | /* Begin PBXResourcesBuildPhase section */ 366 | 17C1BE6244B6A5E008CF32B3DF832378 /* Resources */ = { 367 | isa = PBXResourcesBuildPhase; 368 | buildActionMask = 2147483647; 369 | files = ( 370 | ); 371 | runOnlyForDeploymentPostprocessing = 0; 372 | }; 373 | 46636CEB3DBF3F8C8F00C4C3B299BA1F /* Resources */ = { 374 | isa = PBXResourcesBuildPhase; 375 | buildActionMask = 2147483647; 376 | files = ( 377 | ); 378 | runOnlyForDeploymentPostprocessing = 0; 379 | }; 380 | 597A71B119B7A887B4DA936E849DE2B5 /* Resources */ = { 381 | isa = PBXResourcesBuildPhase; 382 | buildActionMask = 2147483647; 383 | files = ( 384 | ); 385 | runOnlyForDeploymentPostprocessing = 0; 386 | }; 387 | /* End PBXResourcesBuildPhase section */ 388 | 389 | /* Begin PBXSourcesBuildPhase section */ 390 | 2147B87F1DE1BD81560EB5E3E166B93E /* Sources */ = { 391 | isa = PBXSourcesBuildPhase; 392 | buildActionMask = 2147483647; 393 | files = ( 394 | 8D4DA0EB27DEC9B23253B02FF238D680 /* Config.swift in Sources */, 395 | 7E72263F1AF00FBE48BD2648BAA9B703 /* Dynamic.swift in Sources */, 396 | 5A95E75F4A1B65D1F2420C1699172D5C /* Enums.swift in Sources */, 397 | 968271B76D938B7BE5ABDEBFA53B7EDB /* Extensions.swift in Sources */, 398 | 53E9A4A77BC71771744092313FD07E55 /* Protocols.swift in Sources */, 399 | B383F92D6D93765A5E48E547E622CB01 /* SSCustomSideMenu-dummy.m in Sources */, 400 | D530B0590EAECE8EF5F08F9C93B8B79F /* SSMenuButton.swift in Sources */, 401 | 65D943F209993F69EC3F452C38A80E96 /* SSMenuCell.swift in Sources */, 402 | D5ABE7E6445843F6E5221EBAC3D30B00 /* SSMenuTableView.swift in Sources */, 403 | 0A749A1FCEF9203ACEBB37E0D12AB581 /* SSSideMenuContainerViewController.swift in Sources */, 404 | ); 405 | runOnlyForDeploymentPostprocessing = 0; 406 | }; 407 | 42F4C878FB04F42C511A240F43275444 /* Sources */ = { 408 | isa = PBXSourcesBuildPhase; 409 | buildActionMask = 2147483647; 410 | files = ( 411 | C9C9F7F3EB280A65471DA7903FF5A127 /* Pods-SSCustomSideMenu_Example-dummy.m in Sources */, 412 | ); 413 | runOnlyForDeploymentPostprocessing = 0; 414 | }; 415 | 88D70443BDF4FB966759E9B3E4D12476 /* Sources */ = { 416 | isa = PBXSourcesBuildPhase; 417 | buildActionMask = 2147483647; 418 | files = ( 419 | 6286684ECDE32724E474C4E129035E69 /* Pods-SSCustomSideMenu_Tests-dummy.m in Sources */, 420 | ); 421 | runOnlyForDeploymentPostprocessing = 0; 422 | }; 423 | /* End PBXSourcesBuildPhase section */ 424 | 425 | /* Begin PBXTargetDependency section */ 426 | 336AB1146660F9421845BA8381477B8E /* PBXTargetDependency */ = { 427 | isa = PBXTargetDependency; 428 | name = "Pods-SSCustomSideMenu_Example"; 429 | target = ED5A9AD9F1C60C3012557ED5C9EE6D50 /* Pods-SSCustomSideMenu_Example */; 430 | targetProxy = 7938F4F4F1CE72630924278D9F94C976 /* PBXContainerItemProxy */; 431 | }; 432 | 6425A8D2271BECF6BA8A304CD6147C92 /* PBXTargetDependency */ = { 433 | isa = PBXTargetDependency; 434 | name = SSCustomSideMenu; 435 | target = 724D0C26F0CE46E13EBC8EBEFFFFEABC /* SSCustomSideMenu */; 436 | targetProxy = 6ACDCCFF3E6F4C5ACB859746AA733C29 /* PBXContainerItemProxy */; 437 | }; 438 | /* End PBXTargetDependency section */ 439 | 440 | /* Begin XCBuildConfiguration section */ 441 | 1C839B476591851E14CBF6A44C68B06B /* Debug */ = { 442 | isa = XCBuildConfiguration; 443 | baseConfigurationReference = 426139D862CF0C5A8DADE3CAF5CE0131 /* Pods-SSCustomSideMenu_Example.debug.xcconfig */; 444 | buildSettings = { 445 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 446 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 447 | CLANG_ENABLE_OBJC_WEAK = NO; 448 | CODE_SIGN_IDENTITY = ""; 449 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 450 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 451 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 452 | CURRENT_PROJECT_VERSION = 1; 453 | DEFINES_MODULE = YES; 454 | DYLIB_COMPATIBILITY_VERSION = 1; 455 | DYLIB_CURRENT_VERSION = 1; 456 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 457 | INFOPLIST_FILE = "Target Support Files/Pods-SSCustomSideMenu_Example/Pods-SSCustomSideMenu_Example-Info.plist"; 458 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 459 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 460 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 461 | MACH_O_TYPE = staticlib; 462 | MODULEMAP_FILE = "Target Support Files/Pods-SSCustomSideMenu_Example/Pods-SSCustomSideMenu_Example.modulemap"; 463 | OTHER_LDFLAGS = ""; 464 | OTHER_LIBTOOLFLAGS = ""; 465 | PODS_ROOT = "$(SRCROOT)"; 466 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 467 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 468 | SDKROOT = iphoneos; 469 | SKIP_INSTALL = YES; 470 | TARGETED_DEVICE_FAMILY = "1,2"; 471 | VERSIONING_SYSTEM = "apple-generic"; 472 | VERSION_INFO_PREFIX = ""; 473 | }; 474 | name = Debug; 475 | }; 476 | 213DFBAE24651FBC5E266752883A1EFE /* Release */ = { 477 | isa = XCBuildConfiguration; 478 | baseConfigurationReference = 528CCB44C4762AE24DB77141ED03B98E /* Pods-SSCustomSideMenu_Example.release.xcconfig */; 479 | buildSettings = { 480 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 481 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 482 | CLANG_ENABLE_OBJC_WEAK = NO; 483 | CODE_SIGN_IDENTITY = ""; 484 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 485 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 486 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 487 | CURRENT_PROJECT_VERSION = 1; 488 | DEFINES_MODULE = YES; 489 | DYLIB_COMPATIBILITY_VERSION = 1; 490 | DYLIB_CURRENT_VERSION = 1; 491 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 492 | INFOPLIST_FILE = "Target Support Files/Pods-SSCustomSideMenu_Example/Pods-SSCustomSideMenu_Example-Info.plist"; 493 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 494 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 495 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 496 | MACH_O_TYPE = staticlib; 497 | MODULEMAP_FILE = "Target Support Files/Pods-SSCustomSideMenu_Example/Pods-SSCustomSideMenu_Example.modulemap"; 498 | OTHER_LDFLAGS = ""; 499 | OTHER_LIBTOOLFLAGS = ""; 500 | PODS_ROOT = "$(SRCROOT)"; 501 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 502 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 503 | SDKROOT = iphoneos; 504 | SKIP_INSTALL = YES; 505 | TARGETED_DEVICE_FAMILY = "1,2"; 506 | VALIDATE_PRODUCT = YES; 507 | VERSIONING_SYSTEM = "apple-generic"; 508 | VERSION_INFO_PREFIX = ""; 509 | }; 510 | name = Release; 511 | }; 512 | 257497152829C177993B5EC99C1D227A /* Release */ = { 513 | isa = XCBuildConfiguration; 514 | buildSettings = { 515 | ALWAYS_SEARCH_USER_PATHS = NO; 516 | CLANG_ANALYZER_NONNULL = YES; 517 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 518 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 519 | CLANG_CXX_LIBRARY = "libc++"; 520 | CLANG_ENABLE_MODULES = YES; 521 | CLANG_ENABLE_OBJC_ARC = YES; 522 | CLANG_ENABLE_OBJC_WEAK = YES; 523 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 524 | CLANG_WARN_BOOL_CONVERSION = YES; 525 | CLANG_WARN_COMMA = YES; 526 | CLANG_WARN_CONSTANT_CONVERSION = YES; 527 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 528 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 529 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 530 | CLANG_WARN_EMPTY_BODY = YES; 531 | CLANG_WARN_ENUM_CONVERSION = YES; 532 | CLANG_WARN_INFINITE_RECURSION = YES; 533 | CLANG_WARN_INT_CONVERSION = YES; 534 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 535 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 536 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 537 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 538 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 539 | CLANG_WARN_STRICT_PROTOTYPES = YES; 540 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 541 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 542 | CLANG_WARN_UNREACHABLE_CODE = YES; 543 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 544 | COPY_PHASE_STRIP = NO; 545 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 546 | ENABLE_NS_ASSERTIONS = NO; 547 | ENABLE_STRICT_OBJC_MSGSEND = YES; 548 | GCC_C_LANGUAGE_STANDARD = gnu11; 549 | GCC_NO_COMMON_BLOCKS = YES; 550 | GCC_PREPROCESSOR_DEFINITIONS = ( 551 | "POD_CONFIGURATION_RELEASE=1", 552 | "$(inherited)", 553 | ); 554 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 555 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 556 | GCC_WARN_UNDECLARED_SELECTOR = YES; 557 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 558 | GCC_WARN_UNUSED_FUNCTION = YES; 559 | GCC_WARN_UNUSED_VARIABLE = YES; 560 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 561 | MTL_ENABLE_DEBUG_INFO = NO; 562 | MTL_FAST_MATH = YES; 563 | PRODUCT_NAME = "$(TARGET_NAME)"; 564 | STRIP_INSTALLED_PRODUCT = NO; 565 | SWIFT_COMPILATION_MODE = wholemodule; 566 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 567 | SWIFT_VERSION = 5.0; 568 | SYMROOT = "${SRCROOT}/../build"; 569 | }; 570 | name = Release; 571 | }; 572 | C01A53E183DEF428C7773ED89D7C89C8 /* Debug */ = { 573 | isa = XCBuildConfiguration; 574 | baseConfigurationReference = 2C3605C2D80BCEEB55D8241C6B63EF23 /* SSCustomSideMenu.debug.xcconfig */; 575 | buildSettings = { 576 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 577 | CLANG_ENABLE_OBJC_WEAK = NO; 578 | CODE_SIGN_IDENTITY = ""; 579 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 580 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 581 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 582 | CURRENT_PROJECT_VERSION = 1; 583 | DEFINES_MODULE = YES; 584 | DYLIB_COMPATIBILITY_VERSION = 1; 585 | DYLIB_CURRENT_VERSION = 1; 586 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 587 | GCC_PREFIX_HEADER = "Target Support Files/SSCustomSideMenu/SSCustomSideMenu-prefix.pch"; 588 | INFOPLIST_FILE = "Target Support Files/SSCustomSideMenu/SSCustomSideMenu-Info.plist"; 589 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 590 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 591 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 592 | MODULEMAP_FILE = "Target Support Files/SSCustomSideMenu/SSCustomSideMenu.modulemap"; 593 | PRODUCT_MODULE_NAME = SSCustomSideMenu; 594 | PRODUCT_NAME = SSCustomSideMenu; 595 | SDKROOT = iphoneos; 596 | SKIP_INSTALL = YES; 597 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 598 | SWIFT_VERSION = 5.0; 599 | TARGETED_DEVICE_FAMILY = "1,2"; 600 | VERSIONING_SYSTEM = "apple-generic"; 601 | VERSION_INFO_PREFIX = ""; 602 | }; 603 | name = Debug; 604 | }; 605 | C8303048B4AAF2B4FEDDD9841870770F /* Release */ = { 606 | isa = XCBuildConfiguration; 607 | baseConfigurationReference = 72256D52EAC382EB705D1715EC1243AF /* Pods-SSCustomSideMenu_Tests.release.xcconfig */; 608 | buildSettings = { 609 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 610 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 611 | CLANG_ENABLE_OBJC_WEAK = NO; 612 | CODE_SIGN_IDENTITY = ""; 613 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 614 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 615 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 616 | CURRENT_PROJECT_VERSION = 1; 617 | DEFINES_MODULE = YES; 618 | DYLIB_COMPATIBILITY_VERSION = 1; 619 | DYLIB_CURRENT_VERSION = 1; 620 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 621 | INFOPLIST_FILE = "Target Support Files/Pods-SSCustomSideMenu_Tests/Pods-SSCustomSideMenu_Tests-Info.plist"; 622 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 623 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 624 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 625 | MACH_O_TYPE = staticlib; 626 | MODULEMAP_FILE = "Target Support Files/Pods-SSCustomSideMenu_Tests/Pods-SSCustomSideMenu_Tests.modulemap"; 627 | OTHER_LDFLAGS = ""; 628 | OTHER_LIBTOOLFLAGS = ""; 629 | PODS_ROOT = "$(SRCROOT)"; 630 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 631 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 632 | SDKROOT = iphoneos; 633 | SKIP_INSTALL = YES; 634 | TARGETED_DEVICE_FAMILY = "1,2"; 635 | VALIDATE_PRODUCT = YES; 636 | VERSIONING_SYSTEM = "apple-generic"; 637 | VERSION_INFO_PREFIX = ""; 638 | }; 639 | name = Release; 640 | }; 641 | D09D7A2BA0A847A94754E429C076E662 /* Release */ = { 642 | isa = XCBuildConfiguration; 643 | baseConfigurationReference = 5F44E7AB0BFD476E7F94CD4B3E94F9EF /* SSCustomSideMenu.release.xcconfig */; 644 | buildSettings = { 645 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 646 | CLANG_ENABLE_OBJC_WEAK = NO; 647 | CODE_SIGN_IDENTITY = ""; 648 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 649 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 650 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 651 | CURRENT_PROJECT_VERSION = 1; 652 | DEFINES_MODULE = YES; 653 | DYLIB_COMPATIBILITY_VERSION = 1; 654 | DYLIB_CURRENT_VERSION = 1; 655 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 656 | GCC_PREFIX_HEADER = "Target Support Files/SSCustomSideMenu/SSCustomSideMenu-prefix.pch"; 657 | INFOPLIST_FILE = "Target Support Files/SSCustomSideMenu/SSCustomSideMenu-Info.plist"; 658 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 659 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 660 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 661 | MODULEMAP_FILE = "Target Support Files/SSCustomSideMenu/SSCustomSideMenu.modulemap"; 662 | PRODUCT_MODULE_NAME = SSCustomSideMenu; 663 | PRODUCT_NAME = SSCustomSideMenu; 664 | SDKROOT = iphoneos; 665 | SKIP_INSTALL = YES; 666 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; 667 | SWIFT_VERSION = 5.0; 668 | TARGETED_DEVICE_FAMILY = "1,2"; 669 | VALIDATE_PRODUCT = YES; 670 | VERSIONING_SYSTEM = "apple-generic"; 671 | VERSION_INFO_PREFIX = ""; 672 | }; 673 | name = Release; 674 | }; 675 | DD8F832993327D1DD8046C3CBCBD97CD /* Debug */ = { 676 | isa = XCBuildConfiguration; 677 | buildSettings = { 678 | ALWAYS_SEARCH_USER_PATHS = NO; 679 | CLANG_ANALYZER_NONNULL = YES; 680 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 681 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 682 | CLANG_CXX_LIBRARY = "libc++"; 683 | CLANG_ENABLE_MODULES = YES; 684 | CLANG_ENABLE_OBJC_ARC = YES; 685 | CLANG_ENABLE_OBJC_WEAK = YES; 686 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 687 | CLANG_WARN_BOOL_CONVERSION = YES; 688 | CLANG_WARN_COMMA = YES; 689 | CLANG_WARN_CONSTANT_CONVERSION = YES; 690 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 691 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 692 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 693 | CLANG_WARN_EMPTY_BODY = YES; 694 | CLANG_WARN_ENUM_CONVERSION = YES; 695 | CLANG_WARN_INFINITE_RECURSION = YES; 696 | CLANG_WARN_INT_CONVERSION = YES; 697 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 698 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 699 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 700 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 701 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 702 | CLANG_WARN_STRICT_PROTOTYPES = YES; 703 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 704 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 705 | CLANG_WARN_UNREACHABLE_CODE = YES; 706 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 707 | COPY_PHASE_STRIP = NO; 708 | DEBUG_INFORMATION_FORMAT = dwarf; 709 | ENABLE_STRICT_OBJC_MSGSEND = YES; 710 | ENABLE_TESTABILITY = YES; 711 | GCC_C_LANGUAGE_STANDARD = gnu11; 712 | GCC_DYNAMIC_NO_PIC = NO; 713 | GCC_NO_COMMON_BLOCKS = YES; 714 | GCC_OPTIMIZATION_LEVEL = 0; 715 | GCC_PREPROCESSOR_DEFINITIONS = ( 716 | "POD_CONFIGURATION_DEBUG=1", 717 | "DEBUG=1", 718 | "$(inherited)", 719 | ); 720 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 721 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 722 | GCC_WARN_UNDECLARED_SELECTOR = YES; 723 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 724 | GCC_WARN_UNUSED_FUNCTION = YES; 725 | GCC_WARN_UNUSED_VARIABLE = YES; 726 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 727 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 728 | MTL_FAST_MATH = YES; 729 | ONLY_ACTIVE_ARCH = YES; 730 | PRODUCT_NAME = "$(TARGET_NAME)"; 731 | STRIP_INSTALLED_PRODUCT = NO; 732 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 733 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 734 | SWIFT_VERSION = 5.0; 735 | SYMROOT = "${SRCROOT}/../build"; 736 | }; 737 | name = Debug; 738 | }; 739 | E2F6F82C97D073F997A3C4C6B1685D80 /* Debug */ = { 740 | isa = XCBuildConfiguration; 741 | baseConfigurationReference = 6F2A4C7C84890496A95F916A5BFB931D /* Pods-SSCustomSideMenu_Tests.debug.xcconfig */; 742 | buildSettings = { 743 | ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; 744 | ARCHS = "$(ARCHS_STANDARD_64_BIT)"; 745 | CLANG_ENABLE_OBJC_WEAK = NO; 746 | CODE_SIGN_IDENTITY = ""; 747 | "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; 748 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; 749 | "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; 750 | CURRENT_PROJECT_VERSION = 1; 751 | DEFINES_MODULE = YES; 752 | DYLIB_COMPATIBILITY_VERSION = 1; 753 | DYLIB_CURRENT_VERSION = 1; 754 | DYLIB_INSTALL_NAME_BASE = "@rpath"; 755 | INFOPLIST_FILE = "Target Support Files/Pods-SSCustomSideMenu_Tests/Pods-SSCustomSideMenu_Tests-Info.plist"; 756 | INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; 757 | IPHONEOS_DEPLOYMENT_TARGET = 11.0; 758 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 759 | MACH_O_TYPE = staticlib; 760 | MODULEMAP_FILE = "Target Support Files/Pods-SSCustomSideMenu_Tests/Pods-SSCustomSideMenu_Tests.modulemap"; 761 | OTHER_LDFLAGS = ""; 762 | OTHER_LIBTOOLFLAGS = ""; 763 | PODS_ROOT = "$(SRCROOT)"; 764 | PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; 765 | PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; 766 | SDKROOT = iphoneos; 767 | SKIP_INSTALL = YES; 768 | TARGETED_DEVICE_FAMILY = "1,2"; 769 | VERSIONING_SYSTEM = "apple-generic"; 770 | VERSION_INFO_PREFIX = ""; 771 | }; 772 | name = Debug; 773 | }; 774 | /* End XCBuildConfiguration section */ 775 | 776 | /* Begin XCConfigurationList section */ 777 | 0F7528FE1F527B3ED6365F343FB51845 /* Build configuration list for PBXNativeTarget "Pods-SSCustomSideMenu_Tests" */ = { 778 | isa = XCConfigurationList; 779 | buildConfigurations = ( 780 | E2F6F82C97D073F997A3C4C6B1685D80 /* Debug */, 781 | C8303048B4AAF2B4FEDDD9841870770F /* Release */, 782 | ); 783 | defaultConfigurationIsVisible = 0; 784 | defaultConfigurationName = Release; 785 | }; 786 | 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { 787 | isa = XCConfigurationList; 788 | buildConfigurations = ( 789 | DD8F832993327D1DD8046C3CBCBD97CD /* Debug */, 790 | 257497152829C177993B5EC99C1D227A /* Release */, 791 | ); 792 | defaultConfigurationIsVisible = 0; 793 | defaultConfigurationName = Release; 794 | }; 795 | 9834FFD4E36F32A70EBE7718A0442FE7 /* Build configuration list for PBXNativeTarget "Pods-SSCustomSideMenu_Example" */ = { 796 | isa = XCConfigurationList; 797 | buildConfigurations = ( 798 | 1C839B476591851E14CBF6A44C68B06B /* Debug */, 799 | 213DFBAE24651FBC5E266752883A1EFE /* Release */, 800 | ); 801 | defaultConfigurationIsVisible = 0; 802 | defaultConfigurationName = Release; 803 | }; 804 | BD32E572A38619C76EF964ADDC99C4A1 /* Build configuration list for PBXNativeTarget "SSCustomSideMenu" */ = { 805 | isa = XCConfigurationList; 806 | buildConfigurations = ( 807 | C01A53E183DEF428C7773ED89D7C89C8 /* Debug */, 808 | D09D7A2BA0A847A94754E429C076E662 /* Release */, 809 | ); 810 | defaultConfigurationIsVisible = 0; 811 | defaultConfigurationName = Release; 812 | }; 813 | /* End XCConfigurationList section */ 814 | }; 815 | rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; 816 | } 817 | --------------------------------------------------------------------------------