├── LoadingView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── wangcong.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── wangcong.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── LoadingView ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CGRect+Extension.swift ├── Info.plist ├── UIView+Extension.swift ├── ViewController.swift ├── XLoadingView.swift ├── icon_loading@2x.png ├── icon_loading@3x.png ├── icon_loading_shadow@2x.png ├── icon_loading_shadow@3x.png ├── icon_prompt@2x.png └── icon_prompt@3x.png ├── LoadingViewTests ├── Info.plist └── LoadingViewTests.swift ├── LoadingViewUITests ├── Info.plist └── LoadingViewUITests.swift ├── README.md └── xloadingview.gif /LoadingView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LoadingView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LoadingView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingView.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LoadingView.xcodeproj/project.xcworkspace/xcuserdata/wangcong.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingView.xcodeproj/project.xcworkspace/xcuserdata/wangcong.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /LoadingView.xcodeproj/xcuserdata/wangcong.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingView.xcodeproj/xcuserdata/wangcong.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LoadingView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingView/AppDelegate.swift -------------------------------------------------------------------------------- /LoadingView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LoadingView/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingView/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LoadingView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LoadingView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LoadingView/CGRect+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingView/CGRect+Extension.swift -------------------------------------------------------------------------------- /LoadingView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingView/Info.plist -------------------------------------------------------------------------------- /LoadingView/UIView+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingView/UIView+Extension.swift -------------------------------------------------------------------------------- /LoadingView/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingView/ViewController.swift -------------------------------------------------------------------------------- /LoadingView/XLoadingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingView/XLoadingView.swift -------------------------------------------------------------------------------- /LoadingView/icon_loading@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingView/icon_loading@2x.png -------------------------------------------------------------------------------- /LoadingView/icon_loading@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingView/icon_loading@3x.png -------------------------------------------------------------------------------- /LoadingView/icon_loading_shadow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingView/icon_loading_shadow@2x.png -------------------------------------------------------------------------------- /LoadingView/icon_loading_shadow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingView/icon_loading_shadow@3x.png -------------------------------------------------------------------------------- /LoadingView/icon_prompt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingView/icon_prompt@2x.png -------------------------------------------------------------------------------- /LoadingView/icon_prompt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingView/icon_prompt@3x.png -------------------------------------------------------------------------------- /LoadingViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingViewTests/Info.plist -------------------------------------------------------------------------------- /LoadingViewTests/LoadingViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingViewTests/LoadingViewTests.swift -------------------------------------------------------------------------------- /LoadingViewUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingViewUITests/Info.plist -------------------------------------------------------------------------------- /LoadingViewUITests/LoadingViewUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/LoadingViewUITests/LoadingViewUITests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/README.md -------------------------------------------------------------------------------- /xloadingview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ApterKing/XLoadingView/HEAD/xloadingview.gif --------------------------------------------------------------------------------