├── .gitignore ├── Example └── JBInterfaceController │ ├── JBInterfaceController WatchKit App │ ├── Base.lproj │ │ └── Interface.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ └── Info.plist │ ├── JBInterfaceController WatchKit Extension │ ├── Images.xcassets │ │ └── README__ignoredByTemplate__ │ ├── Info.plist │ ├── InterfaceController.h │ ├── InterfaceController.m │ ├── JBModalInterfaceController.h │ └── JBModalInterfaceController.m │ ├── JBInterfaceController.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── JBInterfaceController │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m │ └── JBInterfaceControllerTests │ ├── Info.plist │ └── JBInterfaceControllerTests.m ├── JBInterfaceController.podspec ├── LICENSE ├── README.md └── Source ├── JBInterface.h ├── JBInterface.m ├── JBInterfaceController.h ├── JBInterfaceController.m ├── JBInterfaceController_Protected.h └── JBInterface_Protected.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/JBInterfaceController/JBInterfaceController WatchKit App/Base.lproj/Interface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Example/JBInterfaceController/JBInterfaceController WatchKit App/Base.lproj/Interface.storyboard -------------------------------------------------------------------------------- /Example/JBInterfaceController/JBInterfaceController WatchKit App/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Example/JBInterfaceController/JBInterfaceController WatchKit App/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/JBInterfaceController/JBInterfaceController WatchKit App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Example/JBInterfaceController/JBInterfaceController WatchKit App/Info.plist -------------------------------------------------------------------------------- /Example/JBInterfaceController/JBInterfaceController WatchKit Extension/Images.xcassets/README__ignoredByTemplate__: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Example/JBInterfaceController/JBInterfaceController WatchKit Extension/Images.xcassets/README__ignoredByTemplate__ -------------------------------------------------------------------------------- /Example/JBInterfaceController/JBInterfaceController WatchKit Extension/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Example/JBInterfaceController/JBInterfaceController WatchKit Extension/Info.plist -------------------------------------------------------------------------------- /Example/JBInterfaceController/JBInterfaceController WatchKit Extension/InterfaceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Example/JBInterfaceController/JBInterfaceController WatchKit Extension/InterfaceController.h -------------------------------------------------------------------------------- /Example/JBInterfaceController/JBInterfaceController WatchKit Extension/InterfaceController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Example/JBInterfaceController/JBInterfaceController WatchKit Extension/InterfaceController.m -------------------------------------------------------------------------------- /Example/JBInterfaceController/JBInterfaceController WatchKit Extension/JBModalInterfaceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Example/JBInterfaceController/JBInterfaceController WatchKit Extension/JBModalInterfaceController.h -------------------------------------------------------------------------------- /Example/JBInterfaceController/JBInterfaceController WatchKit Extension/JBModalInterfaceController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Example/JBInterfaceController/JBInterfaceController WatchKit Extension/JBModalInterfaceController.m -------------------------------------------------------------------------------- /Example/JBInterfaceController/JBInterfaceController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Example/JBInterfaceController/JBInterfaceController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/JBInterfaceController/JBInterfaceController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Example/JBInterfaceController/JBInterfaceController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/JBInterfaceController/JBInterfaceController/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Example/JBInterfaceController/JBInterfaceController/AppDelegate.h -------------------------------------------------------------------------------- /Example/JBInterfaceController/JBInterfaceController/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Example/JBInterfaceController/JBInterfaceController/AppDelegate.m -------------------------------------------------------------------------------- /Example/JBInterfaceController/JBInterfaceController/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Example/JBInterfaceController/JBInterfaceController/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/JBInterfaceController/JBInterfaceController/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Example/JBInterfaceController/JBInterfaceController/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/JBInterfaceController/JBInterfaceController/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Example/JBInterfaceController/JBInterfaceController/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/JBInterfaceController/JBInterfaceController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Example/JBInterfaceController/JBInterfaceController/Info.plist -------------------------------------------------------------------------------- /Example/JBInterfaceController/JBInterfaceController/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Example/JBInterfaceController/JBInterfaceController/ViewController.h -------------------------------------------------------------------------------- /Example/JBInterfaceController/JBInterfaceController/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Example/JBInterfaceController/JBInterfaceController/ViewController.m -------------------------------------------------------------------------------- /Example/JBInterfaceController/JBInterfaceController/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Example/JBInterfaceController/JBInterfaceController/main.m -------------------------------------------------------------------------------- /Example/JBInterfaceController/JBInterfaceControllerTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Example/JBInterfaceController/JBInterfaceControllerTests/Info.plist -------------------------------------------------------------------------------- /Example/JBInterfaceController/JBInterfaceControllerTests/JBInterfaceControllerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Example/JBInterfaceController/JBInterfaceControllerTests/JBInterfaceControllerTests.m -------------------------------------------------------------------------------- /JBInterfaceController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/JBInterfaceController.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/README.md -------------------------------------------------------------------------------- /Source/JBInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Source/JBInterface.h -------------------------------------------------------------------------------- /Source/JBInterface.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Source/JBInterface.m -------------------------------------------------------------------------------- /Source/JBInterfaceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Source/JBInterfaceController.h -------------------------------------------------------------------------------- /Source/JBInterfaceController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Source/JBInterfaceController.m -------------------------------------------------------------------------------- /Source/JBInterfaceController_Protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Source/JBInterfaceController_Protected.h -------------------------------------------------------------------------------- /Source/JBInterface_Protected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeswanson/JBInterfaceController/HEAD/Source/JBInterface_Protected.h --------------------------------------------------------------------------------