├── .gitignore ├── .swift-version ├── .travis.yml ├── CONTRIBUTING.md ├── Cartfile ├── Example └── UserInterfaceDemo │ ├── Podfile │ ├── Podfile.lock │ ├── UserInterfaceDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── UserInterfaceDemo.xcscheme │ ├── UserInterfaceDemo.xcworkspace │ └── contents.xcworkspacedata │ └── UserInterfaceDemo │ ├── Base.lproj │ └── LaunchScreen.storyboard │ ├── Info.plist │ ├── Resources │ └── Assets.xcassets │ │ └── AppIcon.appiconset │ │ └── Contents.json │ └── Sources │ ├── AppDelegate.swift │ └── ViewController.swift ├── Images └── UserInterface-icon.png ├── Info ├── Info-iOS.plist ├── Info-macOS.plist ├── Info-tvOS.plist └── Info-watchOS.plist ├── LICENSE.md ├── Playground-iOS.playground ├── Contents.swift ├── contents.xcplayground └── timeline.xctimeline ├── Playground-macOS.playground ├── Contents.swift ├── contents.xcplayground └── timeline.xctimeline ├── README.md ├── Source ├── Shared │ ├── .gitkeep │ ├── Extensions │ │ ├── NSLayoutConstraint+Extensions.swift │ │ └── View+Extensions.swift │ ├── Structs │ │ └── Shadow.swift │ └── TypeAlias │ │ └── TypeAlias.swift ├── iOS+tvOS │ ├── .gitkeep │ └── Extensions │ │ ├── NSLayoutConstraints+iOS.swift │ │ ├── UIButton+Extensions.swift │ │ ├── UICollectionView+Extensions.swift │ │ ├── UICollectionViewCell+Extensions.swift │ │ ├── UIImageView+Extensions.swift │ │ ├── UILabel+Extensions.swift │ │ ├── UIStackView+Extensions.swift │ │ ├── UITableView+Extensions.swift │ │ ├── UITableViewCell+Extensions.swift │ │ ├── UITextField+Extensions.swift │ │ └── UIView+Extensions.swift ├── macOS │ ├── .gitkeep │ ├── Classes │ │ ├── UserInterfaceItem.swift │ │ ├── UserInterfaceLabel.swift │ │ └── UserInterfaceView.swift │ └── Extensions │ │ ├── NSCollectionView+Extensions.swift │ │ ├── NSCollectionViewItem+Extensions.swift │ │ ├── NSStackView+Extensions.swift │ │ ├── NSTableRowView+Extensions.swift │ │ └── NSTableView+Extensions.swift └── watchOS │ └── .gitkeep ├── Tests ├── Info-iOS-Tests.plist ├── Info-macOS-Tests.plist ├── Info-tvOS-Tests.plist ├── Shared │ └── SharedTests.swift ├── iOS+tvOS │ ├── NSLayoutConstraintsTests.swift │ ├── UIButtonTests.swift │ ├── UICollectionViewTests.swift │ ├── UIImageViewTests.swift │ ├── UILabelTests.swift │ ├── UIStackViewTests.swift │ ├── UITableViewTests.swift │ └── UIViewTests.swift └── macOS │ ├── NSCollectionViewTests.swift │ ├── NSLayoutConstraintsTests.swift │ ├── NSStackViewViewTests.swift │ ├── NSTableViewTests.swift │ └── NSViewTests.swift ├── UserInterface.podspec ├── UserInterface.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── UserInterface-iOS.xcscheme │ ├── UserInterface-macOS.xcscheme │ ├── UserInterface-tvOS.xcscheme │ └── UserInterface-watchOS.xcscheme ├── bin ├── bootstrap └── bootstrap-if-needed └── circle.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.2 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Cartfile -------------------------------------------------------------------------------- /Example/UserInterfaceDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Example/UserInterfaceDemo/Podfile -------------------------------------------------------------------------------- /Example/UserInterfaceDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Example/UserInterfaceDemo/Podfile.lock -------------------------------------------------------------------------------- /Example/UserInterfaceDemo/UserInterfaceDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Example/UserInterfaceDemo/UserInterfaceDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/UserInterfaceDemo/UserInterfaceDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Example/UserInterfaceDemo/UserInterfaceDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/UserInterfaceDemo/UserInterfaceDemo.xcodeproj/xcshareddata/xcschemes/UserInterfaceDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Example/UserInterfaceDemo/UserInterfaceDemo.xcodeproj/xcshareddata/xcschemes/UserInterfaceDemo.xcscheme -------------------------------------------------------------------------------- /Example/UserInterfaceDemo/UserInterfaceDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Example/UserInterfaceDemo/UserInterfaceDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/UserInterfaceDemo/UserInterfaceDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Example/UserInterfaceDemo/UserInterfaceDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/UserInterfaceDemo/UserInterfaceDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Example/UserInterfaceDemo/UserInterfaceDemo/Info.plist -------------------------------------------------------------------------------- /Example/UserInterfaceDemo/UserInterfaceDemo/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Example/UserInterfaceDemo/UserInterfaceDemo/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/UserInterfaceDemo/UserInterfaceDemo/Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Example/UserInterfaceDemo/UserInterfaceDemo/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Example/UserInterfaceDemo/UserInterfaceDemo/Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Example/UserInterfaceDemo/UserInterfaceDemo/Sources/ViewController.swift -------------------------------------------------------------------------------- /Images/UserInterface-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Images/UserInterface-icon.png -------------------------------------------------------------------------------- /Info/Info-iOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Info/Info-iOS.plist -------------------------------------------------------------------------------- /Info/Info-macOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Info/Info-macOS.plist -------------------------------------------------------------------------------- /Info/Info-tvOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Info/Info-tvOS.plist -------------------------------------------------------------------------------- /Info/Info-watchOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Info/Info-watchOS.plist -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Playground-iOS.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Playground-iOS.playground/Contents.swift -------------------------------------------------------------------------------- /Playground-iOS.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Playground-iOS.playground/contents.xcplayground -------------------------------------------------------------------------------- /Playground-iOS.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Playground-iOS.playground/timeline.xctimeline -------------------------------------------------------------------------------- /Playground-macOS.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Playground-macOS.playground/Contents.swift -------------------------------------------------------------------------------- /Playground-macOS.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Playground-macOS.playground/contents.xcplayground -------------------------------------------------------------------------------- /Playground-macOS.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Playground-macOS.playground/timeline.xctimeline -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/README.md -------------------------------------------------------------------------------- /Source/Shared/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Shared/Extensions/NSLayoutConstraint+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/Shared/Extensions/NSLayoutConstraint+Extensions.swift -------------------------------------------------------------------------------- /Source/Shared/Extensions/View+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/Shared/Extensions/View+Extensions.swift -------------------------------------------------------------------------------- /Source/Shared/Structs/Shadow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/Shared/Structs/Shadow.swift -------------------------------------------------------------------------------- /Source/Shared/TypeAlias/TypeAlias.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/Shared/TypeAlias/TypeAlias.swift -------------------------------------------------------------------------------- /Source/iOS+tvOS/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/iOS+tvOS/Extensions/NSLayoutConstraints+iOS.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/iOS+tvOS/Extensions/NSLayoutConstraints+iOS.swift -------------------------------------------------------------------------------- /Source/iOS+tvOS/Extensions/UIButton+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/iOS+tvOS/Extensions/UIButton+Extensions.swift -------------------------------------------------------------------------------- /Source/iOS+tvOS/Extensions/UICollectionView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/iOS+tvOS/Extensions/UICollectionView+Extensions.swift -------------------------------------------------------------------------------- /Source/iOS+tvOS/Extensions/UICollectionViewCell+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/iOS+tvOS/Extensions/UICollectionViewCell+Extensions.swift -------------------------------------------------------------------------------- /Source/iOS+tvOS/Extensions/UIImageView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/iOS+tvOS/Extensions/UIImageView+Extensions.swift -------------------------------------------------------------------------------- /Source/iOS+tvOS/Extensions/UILabel+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/iOS+tvOS/Extensions/UILabel+Extensions.swift -------------------------------------------------------------------------------- /Source/iOS+tvOS/Extensions/UIStackView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/iOS+tvOS/Extensions/UIStackView+Extensions.swift -------------------------------------------------------------------------------- /Source/iOS+tvOS/Extensions/UITableView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/iOS+tvOS/Extensions/UITableView+Extensions.swift -------------------------------------------------------------------------------- /Source/iOS+tvOS/Extensions/UITableViewCell+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/iOS+tvOS/Extensions/UITableViewCell+Extensions.swift -------------------------------------------------------------------------------- /Source/iOS+tvOS/Extensions/UITextField+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/iOS+tvOS/Extensions/UITextField+Extensions.swift -------------------------------------------------------------------------------- /Source/iOS+tvOS/Extensions/UIView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/iOS+tvOS/Extensions/UIView+Extensions.swift -------------------------------------------------------------------------------- /Source/macOS/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/macOS/Classes/UserInterfaceItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/macOS/Classes/UserInterfaceItem.swift -------------------------------------------------------------------------------- /Source/macOS/Classes/UserInterfaceLabel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/macOS/Classes/UserInterfaceLabel.swift -------------------------------------------------------------------------------- /Source/macOS/Classes/UserInterfaceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/macOS/Classes/UserInterfaceView.swift -------------------------------------------------------------------------------- /Source/macOS/Extensions/NSCollectionView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/macOS/Extensions/NSCollectionView+Extensions.swift -------------------------------------------------------------------------------- /Source/macOS/Extensions/NSCollectionViewItem+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/macOS/Extensions/NSCollectionViewItem+Extensions.swift -------------------------------------------------------------------------------- /Source/macOS/Extensions/NSStackView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/macOS/Extensions/NSStackView+Extensions.swift -------------------------------------------------------------------------------- /Source/macOS/Extensions/NSTableRowView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/macOS/Extensions/NSTableRowView+Extensions.swift -------------------------------------------------------------------------------- /Source/macOS/Extensions/NSTableView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Source/macOS/Extensions/NSTableView+Extensions.swift -------------------------------------------------------------------------------- /Source/watchOS/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Info-iOS-Tests.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Tests/Info-iOS-Tests.plist -------------------------------------------------------------------------------- /Tests/Info-macOS-Tests.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Tests/Info-macOS-Tests.plist -------------------------------------------------------------------------------- /Tests/Info-tvOS-Tests.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Tests/Info-tvOS-Tests.plist -------------------------------------------------------------------------------- /Tests/Shared/SharedTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Tests/Shared/SharedTests.swift -------------------------------------------------------------------------------- /Tests/iOS+tvOS/NSLayoutConstraintsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Tests/iOS+tvOS/NSLayoutConstraintsTests.swift -------------------------------------------------------------------------------- /Tests/iOS+tvOS/UIButtonTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Tests/iOS+tvOS/UIButtonTests.swift -------------------------------------------------------------------------------- /Tests/iOS+tvOS/UICollectionViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Tests/iOS+tvOS/UICollectionViewTests.swift -------------------------------------------------------------------------------- /Tests/iOS+tvOS/UIImageViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Tests/iOS+tvOS/UIImageViewTests.swift -------------------------------------------------------------------------------- /Tests/iOS+tvOS/UILabelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Tests/iOS+tvOS/UILabelTests.swift -------------------------------------------------------------------------------- /Tests/iOS+tvOS/UIStackViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Tests/iOS+tvOS/UIStackViewTests.swift -------------------------------------------------------------------------------- /Tests/iOS+tvOS/UITableViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Tests/iOS+tvOS/UITableViewTests.swift -------------------------------------------------------------------------------- /Tests/iOS+tvOS/UIViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Tests/iOS+tvOS/UIViewTests.swift -------------------------------------------------------------------------------- /Tests/macOS/NSCollectionViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Tests/macOS/NSCollectionViewTests.swift -------------------------------------------------------------------------------- /Tests/macOS/NSLayoutConstraintsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Tests/macOS/NSLayoutConstraintsTests.swift -------------------------------------------------------------------------------- /Tests/macOS/NSStackViewViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Tests/macOS/NSStackViewViewTests.swift -------------------------------------------------------------------------------- /Tests/macOS/NSTableViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Tests/macOS/NSTableViewTests.swift -------------------------------------------------------------------------------- /Tests/macOS/NSViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/Tests/macOS/NSViewTests.swift -------------------------------------------------------------------------------- /UserInterface.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/UserInterface.podspec -------------------------------------------------------------------------------- /UserInterface.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/UserInterface.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /UserInterface.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/UserInterface.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /UserInterface.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/UserInterface.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /UserInterface.xcodeproj/xcshareddata/xcschemes/UserInterface-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/UserInterface.xcodeproj/xcshareddata/xcschemes/UserInterface-iOS.xcscheme -------------------------------------------------------------------------------- /UserInterface.xcodeproj/xcshareddata/xcschemes/UserInterface-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/UserInterface.xcodeproj/xcshareddata/xcschemes/UserInterface-macOS.xcscheme -------------------------------------------------------------------------------- /UserInterface.xcodeproj/xcshareddata/xcschemes/UserInterface-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/UserInterface.xcodeproj/xcshareddata/xcschemes/UserInterface-tvOS.xcscheme -------------------------------------------------------------------------------- /UserInterface.xcodeproj/xcshareddata/xcschemes/UserInterface-watchOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/UserInterface.xcodeproj/xcshareddata/xcschemes/UserInterface-watchOS.xcscheme -------------------------------------------------------------------------------- /bin/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/bin/bootstrap -------------------------------------------------------------------------------- /bin/bootstrap-if-needed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/bin/bootstrap-if-needed -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zenangst/UserInterface/HEAD/circle.yml --------------------------------------------------------------------------------