├── .gitignore ├── LICENSE ├── PopupAlert-iOS.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── PopupAlert-iOS ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── TestAlertViewController.swift ├── TestToastViewController.swift ├── TestToastViewController.xib ├── ViewController.swift └── pop │ ├── AlertViews │ ├── MessageStyleView.swift │ ├── MessageStyleView.xib │ ├── NomalStyleView.swift │ └── NomalStyleView.xib │ ├── HDAlertViewController.swift │ ├── PopViewUtil.swift │ ├── Resources │ ├── ic_toast_success@2x.png │ ├── ic_toast_success@3x.png │ ├── icon_sign@2x.png │ └── icon_sign@3x.png │ └── ToastViews │ ├── HDToast.swift │ ├── ImageToast.swift │ ├── ImageToast.xib │ ├── TextToast.swift │ ├── TextToast.xib │ └── UIViewExt.swift └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/LICENSE -------------------------------------------------------------------------------- /PopupAlert-iOS.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PopupAlert-iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PopupAlert-iOS/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/AppDelegate.swift -------------------------------------------------------------------------------- /PopupAlert-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /PopupAlert-iOS/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /PopupAlert-iOS/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /PopupAlert-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/Info.plist -------------------------------------------------------------------------------- /PopupAlert-iOS/TestAlertViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/TestAlertViewController.swift -------------------------------------------------------------------------------- /PopupAlert-iOS/TestToastViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/TestToastViewController.swift -------------------------------------------------------------------------------- /PopupAlert-iOS/TestToastViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/TestToastViewController.xib -------------------------------------------------------------------------------- /PopupAlert-iOS/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/ViewController.swift -------------------------------------------------------------------------------- /PopupAlert-iOS/pop/AlertViews/MessageStyleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/pop/AlertViews/MessageStyleView.swift -------------------------------------------------------------------------------- /PopupAlert-iOS/pop/AlertViews/MessageStyleView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/pop/AlertViews/MessageStyleView.xib -------------------------------------------------------------------------------- /PopupAlert-iOS/pop/AlertViews/NomalStyleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/pop/AlertViews/NomalStyleView.swift -------------------------------------------------------------------------------- /PopupAlert-iOS/pop/AlertViews/NomalStyleView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/pop/AlertViews/NomalStyleView.xib -------------------------------------------------------------------------------- /PopupAlert-iOS/pop/HDAlertViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/pop/HDAlertViewController.swift -------------------------------------------------------------------------------- /PopupAlert-iOS/pop/PopViewUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/pop/PopViewUtil.swift -------------------------------------------------------------------------------- /PopupAlert-iOS/pop/Resources/ic_toast_success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/pop/Resources/ic_toast_success@2x.png -------------------------------------------------------------------------------- /PopupAlert-iOS/pop/Resources/ic_toast_success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/pop/Resources/ic_toast_success@3x.png -------------------------------------------------------------------------------- /PopupAlert-iOS/pop/Resources/icon_sign@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/pop/Resources/icon_sign@2x.png -------------------------------------------------------------------------------- /PopupAlert-iOS/pop/Resources/icon_sign@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/pop/Resources/icon_sign@3x.png -------------------------------------------------------------------------------- /PopupAlert-iOS/pop/ToastViews/HDToast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/pop/ToastViews/HDToast.swift -------------------------------------------------------------------------------- /PopupAlert-iOS/pop/ToastViews/ImageToast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/pop/ToastViews/ImageToast.swift -------------------------------------------------------------------------------- /PopupAlert-iOS/pop/ToastViews/ImageToast.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/pop/ToastViews/ImageToast.xib -------------------------------------------------------------------------------- /PopupAlert-iOS/pop/ToastViews/TextToast.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/pop/ToastViews/TextToast.swift -------------------------------------------------------------------------------- /PopupAlert-iOS/pop/ToastViews/TextToast.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/pop/ToastViews/TextToast.xib -------------------------------------------------------------------------------- /PopupAlert-iOS/pop/ToastViews/UIViewExt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/PopupAlert-iOS/pop/ToastViews/UIViewExt.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Darren-chenchen/PopAlert/HEAD/README.md --------------------------------------------------------------------------------