├── .gitignore ├── .swift-version ├── LICENSE ├── README.md ├── UIViewXXYBoom.podspec ├── XXYBoom.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── XXYBoom ├── AppDelegate.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── chrome.imageset │ │ ├── Contents.json │ │ └── app.png │ ├── fireFox.imageset │ │ ├── Contents.json │ │ └── fireFox.jpg │ ├── github.imageset │ │ ├── Contents.json │ │ └── github.jpg │ ├── instrgam.imageset │ │ ├── 2.jpg │ │ └── Contents.json │ ├── sina.imageset │ │ ├── Contents.json │ │ └── sina.png │ └── yy.imageset │ │ ├── Contents.json │ │ └── yy.png ├── Info.plist ├── UIViewXXYBoom.swift ├── ViewController.swift └── en.lproj │ └── Main.strings ├── XXYBoomTests ├── Info.plist └── XXYBoom_Tests.swift └── boom.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 3.0 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/README.md -------------------------------------------------------------------------------- /UIViewXXYBoom.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/UIViewXXYBoom.podspec -------------------------------------------------------------------------------- /XXYBoom.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoom.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /XXYBoom.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoom.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /XXYBoom/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoom/AppDelegate.swift -------------------------------------------------------------------------------- /XXYBoom/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoom/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /XXYBoom/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoom/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /XXYBoom/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoom/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /XXYBoom/Images.xcassets/chrome.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoom/Images.xcassets/chrome.imageset/Contents.json -------------------------------------------------------------------------------- /XXYBoom/Images.xcassets/chrome.imageset/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoom/Images.xcassets/chrome.imageset/app.png -------------------------------------------------------------------------------- /XXYBoom/Images.xcassets/fireFox.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoom/Images.xcassets/fireFox.imageset/Contents.json -------------------------------------------------------------------------------- /XXYBoom/Images.xcassets/fireFox.imageset/fireFox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoom/Images.xcassets/fireFox.imageset/fireFox.jpg -------------------------------------------------------------------------------- /XXYBoom/Images.xcassets/github.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoom/Images.xcassets/github.imageset/Contents.json -------------------------------------------------------------------------------- /XXYBoom/Images.xcassets/github.imageset/github.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoom/Images.xcassets/github.imageset/github.jpg -------------------------------------------------------------------------------- /XXYBoom/Images.xcassets/instrgam.imageset/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoom/Images.xcassets/instrgam.imageset/2.jpg -------------------------------------------------------------------------------- /XXYBoom/Images.xcassets/instrgam.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoom/Images.xcassets/instrgam.imageset/Contents.json -------------------------------------------------------------------------------- /XXYBoom/Images.xcassets/sina.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoom/Images.xcassets/sina.imageset/Contents.json -------------------------------------------------------------------------------- /XXYBoom/Images.xcassets/sina.imageset/sina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoom/Images.xcassets/sina.imageset/sina.png -------------------------------------------------------------------------------- /XXYBoom/Images.xcassets/yy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoom/Images.xcassets/yy.imageset/Contents.json -------------------------------------------------------------------------------- /XXYBoom/Images.xcassets/yy.imageset/yy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoom/Images.xcassets/yy.imageset/yy.png -------------------------------------------------------------------------------- /XXYBoom/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoom/Info.plist -------------------------------------------------------------------------------- /XXYBoom/UIViewXXYBoom.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoom/UIViewXXYBoom.swift -------------------------------------------------------------------------------- /XXYBoom/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoom/ViewController.swift -------------------------------------------------------------------------------- /XXYBoom/en.lproj/Main.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoom/en.lproj/Main.strings -------------------------------------------------------------------------------- /XXYBoomTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoomTests/Info.plist -------------------------------------------------------------------------------- /XXYBoomTests/XXYBoom_Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/XXYBoomTests/XXYBoom_Tests.swift -------------------------------------------------------------------------------- /boom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xxycode/UIViewXXYBoom/HEAD/boom.gif --------------------------------------------------------------------------------