├── .gitignore ├── .swift-version ├── .travis.yml ├── CHANGELOG.md ├── Cartfile ├── Cartfile.resolved ├── Dip-UI.podspec ├── DipUI ├── DipUI.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── DipUI.xcscheme ├── DipUI │ ├── DipUI.h │ └── Info.plist └── DipUITests │ ├── DipUITests.swift │ ├── Info.plist │ ├── NSStoryboard.storyboard │ ├── TVStoryboard.storyboard │ └── UIStoryboard.storyboard ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── StoryboardInstantiatable.swift └── adding-dip-tag-in-ib.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliSoftware/Dip-UI/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliSoftware/Dip-UI/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliSoftware/Dip-UI/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- 1 | github "AliSoftware/Dip" ~> 6.0 2 | 3 | -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- 1 | github "AliSoftware/Dip" "6.0" 2 | -------------------------------------------------------------------------------- /Dip-UI.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliSoftware/Dip-UI/HEAD/Dip-UI.podspec -------------------------------------------------------------------------------- /DipUI/DipUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliSoftware/Dip-UI/HEAD/DipUI/DipUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DipUI/DipUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliSoftware/Dip-UI/HEAD/DipUI/DipUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DipUI/DipUI.xcodeproj/xcshareddata/xcschemes/DipUI.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliSoftware/Dip-UI/HEAD/DipUI/DipUI.xcodeproj/xcshareddata/xcschemes/DipUI.xcscheme -------------------------------------------------------------------------------- /DipUI/DipUI/DipUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliSoftware/Dip-UI/HEAD/DipUI/DipUI/DipUI.h -------------------------------------------------------------------------------- /DipUI/DipUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliSoftware/Dip-UI/HEAD/DipUI/DipUI/Info.plist -------------------------------------------------------------------------------- /DipUI/DipUITests/DipUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliSoftware/Dip-UI/HEAD/DipUI/DipUITests/DipUITests.swift -------------------------------------------------------------------------------- /DipUI/DipUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliSoftware/Dip-UI/HEAD/DipUI/DipUITests/Info.plist -------------------------------------------------------------------------------- /DipUI/DipUITests/NSStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliSoftware/Dip-UI/HEAD/DipUI/DipUITests/NSStoryboard.storyboard -------------------------------------------------------------------------------- /DipUI/DipUITests/TVStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliSoftware/Dip-UI/HEAD/DipUI/DipUITests/TVStoryboard.storyboard -------------------------------------------------------------------------------- /DipUI/DipUITests/UIStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliSoftware/Dip-UI/HEAD/DipUI/DipUITests/UIStoryboard.storyboard -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliSoftware/Dip-UI/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliSoftware/Dip-UI/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliSoftware/Dip-UI/HEAD/README.md -------------------------------------------------------------------------------- /Sources/StoryboardInstantiatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliSoftware/Dip-UI/HEAD/Sources/StoryboardInstantiatable.swift -------------------------------------------------------------------------------- /adding-dip-tag-in-ib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliSoftware/Dip-UI/HEAD/adding-dip-tag-in-ib.png --------------------------------------------------------------------------------