├── DGPopUpViewController ├── DGPopUpViewController.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── Desgard_Duan.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── Desgard_Duan.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── DGPopUpViewController.xcscheme │ │ └── xcschememanagement.plist ├── DGPopUpViewController │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── end_logo.imageset │ │ │ ├── Contents.json │ │ │ └── success_logo.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── DGPopUpViewController │ │ ├── DGPopUpView.h │ │ ├── DGPopUpView.m │ │ ├── DGPopUpViewController.h │ │ ├── DGPopUpViewController.m │ │ ├── DGPopUpViewLoginButton.h │ │ ├── DGPopUpViewLoginButton.m │ │ ├── DGPopUpViewTextView.h │ │ └── DGPopUpViewTextView.m │ ├── DGPopUpViewTextView.xib │ ├── Info.plist │ ├── Masonry │ │ ├── Info.plist │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ └── ViewController+MASAdditions.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m └── DGPopUpViewControllerUITests │ ├── DGPopUpViewControllerUITests.m │ └── Info.plist ├── LICENSE ├── README.md ├── Source └── screenshot.gif └── demo20.gif /DGPopUpViewController/DGPopUpViewController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController.xcodeproj/project.xcworkspace/xcuserdata/Desgard_Duan.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController.xcodeproj/project.xcworkspace/xcuserdata/Desgard_Duan.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController.xcodeproj/xcuserdata/Desgard_Duan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController.xcodeproj/xcuserdata/Desgard_Duan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController.xcodeproj/xcuserdata/Desgard_Duan.xcuserdatad/xcschemes/DGPopUpViewController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController.xcodeproj/xcuserdata/Desgard_Duan.xcuserdatad/xcschemes/DGPopUpViewController.xcscheme -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController.xcodeproj/xcuserdata/Desgard_Duan.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController.xcodeproj/xcuserdata/Desgard_Duan.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/AppDelegate.h -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/AppDelegate.m -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Assets.xcassets/end_logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Assets.xcassets/end_logo.imageset/Contents.json -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Assets.xcassets/end_logo.imageset/success_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Assets.xcassets/end_logo.imageset/success_logo.png -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/DGPopUpViewController/DGPopUpView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/DGPopUpViewController/DGPopUpView.h -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/DGPopUpViewController/DGPopUpView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/DGPopUpViewController/DGPopUpView.m -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/DGPopUpViewController/DGPopUpViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/DGPopUpViewController/DGPopUpViewController.h -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/DGPopUpViewController/DGPopUpViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/DGPopUpViewController/DGPopUpViewController.m -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/DGPopUpViewController/DGPopUpViewLoginButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/DGPopUpViewController/DGPopUpViewLoginButton.h -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/DGPopUpViewController/DGPopUpViewLoginButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/DGPopUpViewController/DGPopUpViewLoginButton.m -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/DGPopUpViewController/DGPopUpViewTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/DGPopUpViewController/DGPopUpViewTextView.h -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/DGPopUpViewController/DGPopUpViewTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/DGPopUpViewController/DGPopUpViewTextView.m -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/DGPopUpViewTextView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/DGPopUpViewTextView.xib -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Info.plist -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/Info.plist -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/Masonry.h -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/ViewController.h -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/ViewController.m -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewController/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewController/main.m -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewControllerUITests/DGPopUpViewControllerUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewControllerUITests/DGPopUpViewControllerUITests.m -------------------------------------------------------------------------------- /DGPopUpViewController/DGPopUpViewControllerUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/DGPopUpViewController/DGPopUpViewControllerUITests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/README.md -------------------------------------------------------------------------------- /Source/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/Source/screenshot.gif -------------------------------------------------------------------------------- /demo20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desgard/DGPopUpViewController/HEAD/demo20.gif --------------------------------------------------------------------------------