├── .gitignore ├── .travis.yml ├── Example ├── MAFActionSheetController.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── MAFActionSheetController-Example.xcscheme ├── MAFActionSheetController.xcworkspace │ └── contents.xcworkspacedata ├── MAFActionSheetController │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── LaunchScreen.xib │ ├── MAFActionSheetController-Info.plist │ ├── MAFActionSheetController-Prefix.pch │ ├── MAFAppDelegate.h │ ├── MAFAppDelegate.m │ ├── Main.storyboard │ ├── ViewController.h │ ├── ViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── Headers │ │ └── Public │ │ │ ├── MAFActionSheetController │ │ │ ├── MAFActionSheetController.h │ │ │ └── MAFActionSheetItem.h │ │ │ └── MAFOverlay │ │ │ ├── MAFOverlayPresentationAnimator.h │ │ │ ├── MAFOverlayPresentationContext.h │ │ │ ├── MAFOverlayPresentationController.h │ │ │ ├── MAFOverlayPresentationCoordinator.h │ │ │ ├── MAFOverlayPresentationDataSource.h │ │ │ └── MAFOverlayPresentationLayoutAttributes.h │ ├── Local Podspecs │ │ └── MAFActionSheetController.podspec │ ├── MAFOverlay │ │ ├── LICENSE │ │ ├── Pod │ │ │ └── Classes │ │ │ │ ├── MAFOverlayPresentationAnimator.h │ │ │ │ ├── MAFOverlayPresentationAnimator.m │ │ │ │ ├── MAFOverlayPresentationContext.h │ │ │ │ ├── MAFOverlayPresentationController.h │ │ │ │ ├── MAFOverlayPresentationController.m │ │ │ │ ├── MAFOverlayPresentationCoordinator.h │ │ │ │ ├── MAFOverlayPresentationCoordinator.m │ │ │ │ ├── MAFOverlayPresentationDataSource.h │ │ │ │ ├── MAFOverlayPresentationLayoutAttributes.h │ │ │ │ └── MAFOverlayPresentationLayoutAttributes.m │ │ └── README.md │ ├── Pods.xcodeproj │ │ └── project.pbxproj │ └── Target Support Files │ │ ├── Pods-MAFActionSheetController-MAFActionSheetController │ │ ├── Pods-MAFActionSheetController-MAFActionSheetController-Private.xcconfig │ │ ├── Pods-MAFActionSheetController-MAFActionSheetController-dummy.m │ │ ├── Pods-MAFActionSheetController-MAFActionSheetController-prefix.pch │ │ └── Pods-MAFActionSheetController-MAFActionSheetController.xcconfig │ │ ├── Pods-MAFActionSheetController-MAFOverlay │ │ ├── Pods-MAFActionSheetController-MAFOverlay-Private.xcconfig │ │ ├── Pods-MAFActionSheetController-MAFOverlay-dummy.m │ │ ├── Pods-MAFActionSheetController-MAFOverlay-prefix.pch │ │ └── Pods-MAFActionSheetController-MAFOverlay.xcconfig │ │ ├── Pods-MAFActionSheetController │ │ ├── Pods-MAFActionSheetController-acknowledgements.markdown │ │ ├── Pods-MAFActionSheetController-acknowledgements.plist │ │ ├── Pods-MAFActionSheetController-dummy.m │ │ ├── Pods-MAFActionSheetController-environment.h │ │ ├── Pods-MAFActionSheetController-resources.sh │ │ ├── Pods-MAFActionSheetController.debug.xcconfig │ │ └── Pods-MAFActionSheetController.release.xcconfig │ │ ├── Pods-Tests-MAFActionSheetController │ │ ├── Pods-Tests-MAFActionSheetController-Private.xcconfig │ │ ├── Pods-Tests-MAFActionSheetController-dummy.m │ │ ├── Pods-Tests-MAFActionSheetController-prefix.pch │ │ └── Pods-Tests-MAFActionSheetController.xcconfig │ │ ├── Pods-Tests-MAFOverlay │ │ ├── Pods-Tests-MAFOverlay-Private.xcconfig │ │ ├── Pods-Tests-MAFOverlay-dummy.m │ │ ├── Pods-Tests-MAFOverlay-prefix.pch │ │ └── Pods-Tests-MAFOverlay.xcconfig │ │ └── Pods-Tests │ │ ├── Pods-Tests-acknowledgements.markdown │ │ ├── Pods-Tests-acknowledgements.plist │ │ ├── Pods-Tests-dummy.m │ │ ├── Pods-Tests-environment.h │ │ ├── Pods-Tests-resources.sh │ │ ├── Pods-Tests.debug.xcconfig │ │ └── Pods-Tests.release.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── MAFActionSheetController.podspec ├── MAFActionSheetControlleriPhoneLandscape.png ├── MAFActionSheetControlleriPhonePortrait.png ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── MAFActionSheetController.h │ ├── MAFActionSheetController.m │ ├── MAFActionSheetItem.h │ ├── MAFActionSheetItem.m │ └── Private │ ├── MAFActionSheetTableViewCell.h │ └── MAFActionSheetTableViewCell.m └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/MAFActionSheetController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/MAFActionSheetController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/MAFActionSheetController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/MAFActionSheetController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/MAFActionSheetController.xcodeproj/xcshareddata/xcschemes/MAFActionSheetController-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/MAFActionSheetController.xcodeproj/xcshareddata/xcschemes/MAFActionSheetController-Example.xcscheme -------------------------------------------------------------------------------- /Example/MAFActionSheetController.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/MAFActionSheetController.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/MAFActionSheetController/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/MAFActionSheetController/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/MAFActionSheetController/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/MAFActionSheetController/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/MAFActionSheetController/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/MAFActionSheetController/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/MAFActionSheetController/MAFActionSheetController-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/MAFActionSheetController/MAFActionSheetController-Info.plist -------------------------------------------------------------------------------- /Example/MAFActionSheetController/MAFActionSheetController-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/MAFActionSheetController/MAFActionSheetController-Prefix.pch -------------------------------------------------------------------------------- /Example/MAFActionSheetController/MAFAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/MAFActionSheetController/MAFAppDelegate.h -------------------------------------------------------------------------------- /Example/MAFActionSheetController/MAFAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/MAFActionSheetController/MAFAppDelegate.m -------------------------------------------------------------------------------- /Example/MAFActionSheetController/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/MAFActionSheetController/Main.storyboard -------------------------------------------------------------------------------- /Example/MAFActionSheetController/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/MAFActionSheetController/ViewController.h -------------------------------------------------------------------------------- /Example/MAFActionSheetController/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/MAFActionSheetController/ViewController.m -------------------------------------------------------------------------------- /Example/MAFActionSheetController/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/MAFActionSheetController/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/MAFActionSheetController/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MAFActionSheetController/MAFActionSheetController.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/MAFActionSheetController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MAFActionSheetController/MAFActionSheetItem.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/MAFActionSheetItem.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MAFOverlay/MAFOverlayPresentationAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../MAFOverlay/Pod/Classes/MAFOverlayPresentationAnimator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MAFOverlay/MAFOverlayPresentationContext.h: -------------------------------------------------------------------------------- 1 | ../../../MAFOverlay/Pod/Classes/MAFOverlayPresentationContext.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MAFOverlay/MAFOverlayPresentationController.h: -------------------------------------------------------------------------------- 1 | ../../../MAFOverlay/Pod/Classes/MAFOverlayPresentationController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MAFOverlay/MAFOverlayPresentationCoordinator.h: -------------------------------------------------------------------------------- 1 | ../../../MAFOverlay/Pod/Classes/MAFOverlayPresentationCoordinator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MAFOverlay/MAFOverlayPresentationDataSource.h: -------------------------------------------------------------------------------- 1 | ../../../MAFOverlay/Pod/Classes/MAFOverlayPresentationDataSource.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/MAFOverlay/MAFOverlayPresentationLayoutAttributes.h: -------------------------------------------------------------------------------- 1 | ../../../MAFOverlay/Pod/Classes/MAFOverlayPresentationLayoutAttributes.h -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/MAFActionSheetController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Local Podspecs/MAFActionSheetController.podspec -------------------------------------------------------------------------------- /Example/Pods/MAFOverlay/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/MAFOverlay/LICENSE -------------------------------------------------------------------------------- /Example/Pods/MAFOverlay/Pod/Classes/MAFOverlayPresentationAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/MAFOverlay/Pod/Classes/MAFOverlayPresentationAnimator.h -------------------------------------------------------------------------------- /Example/Pods/MAFOverlay/Pod/Classes/MAFOverlayPresentationAnimator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/MAFOverlay/Pod/Classes/MAFOverlayPresentationAnimator.m -------------------------------------------------------------------------------- /Example/Pods/MAFOverlay/Pod/Classes/MAFOverlayPresentationContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/MAFOverlay/Pod/Classes/MAFOverlayPresentationContext.h -------------------------------------------------------------------------------- /Example/Pods/MAFOverlay/Pod/Classes/MAFOverlayPresentationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/MAFOverlay/Pod/Classes/MAFOverlayPresentationController.h -------------------------------------------------------------------------------- /Example/Pods/MAFOverlay/Pod/Classes/MAFOverlayPresentationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/MAFOverlay/Pod/Classes/MAFOverlayPresentationController.m -------------------------------------------------------------------------------- /Example/Pods/MAFOverlay/Pod/Classes/MAFOverlayPresentationCoordinator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/MAFOverlay/Pod/Classes/MAFOverlayPresentationCoordinator.h -------------------------------------------------------------------------------- /Example/Pods/MAFOverlay/Pod/Classes/MAFOverlayPresentationCoordinator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/MAFOverlay/Pod/Classes/MAFOverlayPresentationCoordinator.m -------------------------------------------------------------------------------- /Example/Pods/MAFOverlay/Pod/Classes/MAFOverlayPresentationDataSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/MAFOverlay/Pod/Classes/MAFOverlayPresentationDataSource.h -------------------------------------------------------------------------------- /Example/Pods/MAFOverlay/Pod/Classes/MAFOverlayPresentationLayoutAttributes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/MAFOverlay/Pod/Classes/MAFOverlayPresentationLayoutAttributes.h -------------------------------------------------------------------------------- /Example/Pods/MAFOverlay/Pod/Classes/MAFOverlayPresentationLayoutAttributes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/MAFOverlay/Pod/Classes/MAFOverlayPresentationLayoutAttributes.m -------------------------------------------------------------------------------- /Example/Pods/MAFOverlay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/MAFOverlay/README.md -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MAFActionSheetController-MAFActionSheetController/Pods-MAFActionSheetController-MAFActionSheetController-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MAFActionSheetController-MAFActionSheetController/Pods-MAFActionSheetController-MAFActionSheetController-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MAFActionSheetController-MAFActionSheetController/Pods-MAFActionSheetController-MAFActionSheetController-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MAFActionSheetController-MAFActionSheetController/Pods-MAFActionSheetController-MAFActionSheetController-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MAFActionSheetController-MAFActionSheetController/Pods-MAFActionSheetController-MAFActionSheetController-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MAFActionSheetController-MAFActionSheetController/Pods-MAFActionSheetController-MAFActionSheetController-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MAFActionSheetController-MAFActionSheetController/Pods-MAFActionSheetController-MAFActionSheetController.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MAFActionSheetController-MAFActionSheetController/Pods-MAFActionSheetController-MAFActionSheetController.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MAFActionSheetController-MAFOverlay/Pods-MAFActionSheetController-MAFOverlay-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MAFActionSheetController-MAFOverlay/Pods-MAFActionSheetController-MAFOverlay-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MAFActionSheetController-MAFOverlay/Pods-MAFActionSheetController-MAFOverlay-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MAFActionSheetController-MAFOverlay/Pods-MAFActionSheetController-MAFOverlay-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MAFActionSheetController-MAFOverlay/Pods-MAFActionSheetController-MAFOverlay-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MAFActionSheetController-MAFOverlay/Pods-MAFActionSheetController-MAFOverlay-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MAFActionSheetController-MAFOverlay/Pods-MAFActionSheetController-MAFOverlay.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MAFActionSheetController-MAFOverlay/Pods-MAFActionSheetController-MAFOverlay.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MAFActionSheetController/Pods-MAFActionSheetController-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MAFActionSheetController/Pods-MAFActionSheetController-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MAFActionSheetController/Pods-MAFActionSheetController-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MAFActionSheetController/Pods-MAFActionSheetController-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MAFActionSheetController/Pods-MAFActionSheetController-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MAFActionSheetController/Pods-MAFActionSheetController-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MAFActionSheetController/Pods-MAFActionSheetController-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MAFActionSheetController/Pods-MAFActionSheetController-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MAFActionSheetController/Pods-MAFActionSheetController-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MAFActionSheetController/Pods-MAFActionSheetController-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MAFActionSheetController/Pods-MAFActionSheetController.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MAFActionSheetController/Pods-MAFActionSheetController.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-MAFActionSheetController/Pods-MAFActionSheetController.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-MAFActionSheetController/Pods-MAFActionSheetController.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-MAFActionSheetController/Pods-Tests-MAFActionSheetController-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-Tests-MAFActionSheetController/Pods-Tests-MAFActionSheetController-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-MAFActionSheetController/Pods-Tests-MAFActionSheetController-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-Tests-MAFActionSheetController/Pods-Tests-MAFActionSheetController-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-MAFActionSheetController/Pods-Tests-MAFActionSheetController-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-Tests-MAFActionSheetController/Pods-Tests-MAFActionSheetController-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-MAFActionSheetController/Pods-Tests-MAFActionSheetController.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_TESTS_MAFACTIONSHEETCONTROLLER_OTHER_LDFLAGS = -framework "UIKit" -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-MAFOverlay/Pods-Tests-MAFOverlay-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-Tests-MAFOverlay/Pods-Tests-MAFOverlay-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-MAFOverlay/Pods-Tests-MAFOverlay-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-Tests-MAFOverlay/Pods-Tests-MAFOverlay-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-MAFOverlay/Pods-Tests-MAFOverlay-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-Tests-MAFOverlay/Pods-Tests-MAFOverlay-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-MAFOverlay/Pods-Tests-MAFOverlay.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_TESTS_MAFOVERLAY_OTHER_LDFLAGS = -framework "UIKit" -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/LICENSE -------------------------------------------------------------------------------- /MAFActionSheetController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/MAFActionSheetController.podspec -------------------------------------------------------------------------------- /MAFActionSheetControlleriPhoneLandscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/MAFActionSheetControlleriPhoneLandscape.png -------------------------------------------------------------------------------- /MAFActionSheetControlleriPhonePortrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/MAFActionSheetControlleriPhonePortrait.png -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/MAFActionSheetController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Pod/Classes/MAFActionSheetController.h -------------------------------------------------------------------------------- /Pod/Classes/MAFActionSheetController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Pod/Classes/MAFActionSheetController.m -------------------------------------------------------------------------------- /Pod/Classes/MAFActionSheetItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Pod/Classes/MAFActionSheetItem.h -------------------------------------------------------------------------------- /Pod/Classes/MAFActionSheetItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Pod/Classes/MAFActionSheetItem.m -------------------------------------------------------------------------------- /Pod/Classes/Private/MAFActionSheetTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Pod/Classes/Private/MAFActionSheetTableViewCell.h -------------------------------------------------------------------------------- /Pod/Classes/Private/MAFActionSheetTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/Pod/Classes/Private/MAFActionSheetTableViewCell.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jedlewison/MAFActionSheetController/HEAD/README.md --------------------------------------------------------------------------------