├── LICENSE ├── README.md ├── TYAlertController.podspec ├── TYAlertControllerDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ ├── 233wangxiao.xcuserdatad │ │ └── WorkspaceSettings.xcsettings │ │ └── tanyang.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── 233wangxiao.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── TYAlertControllerDemo.xcscheme │ │ └── xcschememanagement.plist │ └── tanyang.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── TYAlertControllerDemo.xcscheme │ └── xcschememanagement.plist ├── TYAlertControllerDemo ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Blur Effects │ ├── TYAlertController+BlurEffects.h │ ├── TYAlertController+BlurEffects.m │ ├── UIImage+ImageEffects.h │ └── UIImage+ImageEffects.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── btn_share_QQ.imageset │ │ ├── Contents.json │ │ └── btn_share_QQ@2x.png │ ├── btn_share_QQhaoyou.imageset │ │ ├── Contents.json │ │ └── btn_share_QQhaoyou@2x.png │ ├── btn_share_del.imageset │ │ ├── Contents.json │ │ └── btn_share_del@2x.png │ ├── btn_share_pengyouquan.imageset │ │ ├── Contents.json │ │ └── btn_share_pengyouquan@2x.png │ ├── btn_share_sina.imageset │ │ ├── Contents.json │ │ └── btn_share_sina@2x.png │ └── btn_share_weixin.imageset │ │ ├── Contents.json │ │ └── btn_share_weixin@2x.png ├── Info.plist ├── SettingModelView.h ├── SettingModelView.m ├── SettingModelView.xib ├── ShareView.h ├── ShareView.m ├── ShareView.xib ├── TYAlertController │ ├── TYAlertController+TransitionAnimate.m │ ├── TYAlertController.h │ ├── TYAlertController.m │ ├── TYAlertDropDownAnimation.h │ ├── TYAlertDropDownAnimation.m │ ├── TYAlertFadeAnimation.h │ ├── TYAlertFadeAnimation.m │ ├── TYAlertScaleFadeAnimation.h │ ├── TYAlertScaleFadeAnimation.m │ ├── TYAlertView.h │ ├── TYAlertView.m │ ├── TYBaseAnimation.h │ ├── TYBaseAnimation.m │ ├── TYShowAlertView.h │ ├── TYShowAlertView.m │ ├── UIView+TYAlertView.h │ ├── UIView+TYAlertView.m │ ├── UIView+TYAutoLayout.h │ └── UIView+TYAutoLayout.m ├── ViewController.h ├── ViewController.m ├── main.m └── screen.jpg ├── TYAlertControllerDemoTests ├── Info.plist └── TYAlertControllerDemoTests.m └── screenshot └── TYAlertControllerDemo.gif /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/README.md -------------------------------------------------------------------------------- /TYAlertController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertController.podspec -------------------------------------------------------------------------------- /TYAlertControllerDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TYAlertControllerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TYAlertControllerDemo.xcodeproj/project.xcworkspace/xcuserdata/233wangxiao.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo.xcodeproj/project.xcworkspace/xcuserdata/233wangxiao.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /TYAlertControllerDemo.xcodeproj/project.xcworkspace/xcuserdata/tanyang.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo.xcodeproj/project.xcworkspace/xcuserdata/tanyang.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TYAlertControllerDemo.xcodeproj/xcuserdata/233wangxiao.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo.xcodeproj/xcuserdata/233wangxiao.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TYAlertControllerDemo.xcodeproj/xcuserdata/233wangxiao.xcuserdatad/xcschemes/TYAlertControllerDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo.xcodeproj/xcuserdata/233wangxiao.xcuserdatad/xcschemes/TYAlertControllerDemo.xcscheme -------------------------------------------------------------------------------- /TYAlertControllerDemo.xcodeproj/xcuserdata/233wangxiao.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo.xcodeproj/xcuserdata/233wangxiao.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TYAlertControllerDemo.xcodeproj/xcuserdata/tanyang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo.xcodeproj/xcuserdata/tanyang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TYAlertControllerDemo.xcodeproj/xcuserdata/tanyang.xcuserdatad/xcschemes/TYAlertControllerDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo.xcodeproj/xcuserdata/tanyang.xcuserdatad/xcschemes/TYAlertControllerDemo.xcscheme -------------------------------------------------------------------------------- /TYAlertControllerDemo.xcodeproj/xcuserdata/tanyang.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo.xcodeproj/xcuserdata/tanyang.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TYAlertControllerDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/AppDelegate.h -------------------------------------------------------------------------------- /TYAlertControllerDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/AppDelegate.m -------------------------------------------------------------------------------- /TYAlertControllerDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /TYAlertControllerDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TYAlertControllerDemo/Blur Effects/TYAlertController+BlurEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/Blur Effects/TYAlertController+BlurEffects.h -------------------------------------------------------------------------------- /TYAlertControllerDemo/Blur Effects/TYAlertController+BlurEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/Blur Effects/TYAlertController+BlurEffects.m -------------------------------------------------------------------------------- /TYAlertControllerDemo/Blur Effects/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/Blur Effects/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /TYAlertControllerDemo/Blur Effects/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/Blur Effects/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /TYAlertControllerDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TYAlertControllerDemo/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /TYAlertControllerDemo/Images.xcassets/btn_share_QQ.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/Images.xcassets/btn_share_QQ.imageset/Contents.json -------------------------------------------------------------------------------- /TYAlertControllerDemo/Images.xcassets/btn_share_QQ.imageset/btn_share_QQ@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/Images.xcassets/btn_share_QQ.imageset/btn_share_QQ@2x.png -------------------------------------------------------------------------------- /TYAlertControllerDemo/Images.xcassets/btn_share_QQhaoyou.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/Images.xcassets/btn_share_QQhaoyou.imageset/Contents.json -------------------------------------------------------------------------------- /TYAlertControllerDemo/Images.xcassets/btn_share_QQhaoyou.imageset/btn_share_QQhaoyou@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/Images.xcassets/btn_share_QQhaoyou.imageset/btn_share_QQhaoyou@2x.png -------------------------------------------------------------------------------- /TYAlertControllerDemo/Images.xcassets/btn_share_del.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/Images.xcassets/btn_share_del.imageset/Contents.json -------------------------------------------------------------------------------- /TYAlertControllerDemo/Images.xcassets/btn_share_del.imageset/btn_share_del@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/Images.xcassets/btn_share_del.imageset/btn_share_del@2x.png -------------------------------------------------------------------------------- /TYAlertControllerDemo/Images.xcassets/btn_share_pengyouquan.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/Images.xcassets/btn_share_pengyouquan.imageset/Contents.json -------------------------------------------------------------------------------- /TYAlertControllerDemo/Images.xcassets/btn_share_pengyouquan.imageset/btn_share_pengyouquan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/Images.xcassets/btn_share_pengyouquan.imageset/btn_share_pengyouquan@2x.png -------------------------------------------------------------------------------- /TYAlertControllerDemo/Images.xcassets/btn_share_sina.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/Images.xcassets/btn_share_sina.imageset/Contents.json -------------------------------------------------------------------------------- /TYAlertControllerDemo/Images.xcassets/btn_share_sina.imageset/btn_share_sina@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/Images.xcassets/btn_share_sina.imageset/btn_share_sina@2x.png -------------------------------------------------------------------------------- /TYAlertControllerDemo/Images.xcassets/btn_share_weixin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/Images.xcassets/btn_share_weixin.imageset/Contents.json -------------------------------------------------------------------------------- /TYAlertControllerDemo/Images.xcassets/btn_share_weixin.imageset/btn_share_weixin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/Images.xcassets/btn_share_weixin.imageset/btn_share_weixin@2x.png -------------------------------------------------------------------------------- /TYAlertControllerDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/Info.plist -------------------------------------------------------------------------------- /TYAlertControllerDemo/SettingModelView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/SettingModelView.h -------------------------------------------------------------------------------- /TYAlertControllerDemo/SettingModelView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/SettingModelView.m -------------------------------------------------------------------------------- /TYAlertControllerDemo/SettingModelView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/SettingModelView.xib -------------------------------------------------------------------------------- /TYAlertControllerDemo/ShareView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/ShareView.h -------------------------------------------------------------------------------- /TYAlertControllerDemo/ShareView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/ShareView.m -------------------------------------------------------------------------------- /TYAlertControllerDemo/ShareView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/ShareView.xib -------------------------------------------------------------------------------- /TYAlertControllerDemo/TYAlertController/TYAlertController+TransitionAnimate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/TYAlertController/TYAlertController+TransitionAnimate.m -------------------------------------------------------------------------------- /TYAlertControllerDemo/TYAlertController/TYAlertController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/TYAlertController/TYAlertController.h -------------------------------------------------------------------------------- /TYAlertControllerDemo/TYAlertController/TYAlertController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/TYAlertController/TYAlertController.m -------------------------------------------------------------------------------- /TYAlertControllerDemo/TYAlertController/TYAlertDropDownAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/TYAlertController/TYAlertDropDownAnimation.h -------------------------------------------------------------------------------- /TYAlertControllerDemo/TYAlertController/TYAlertDropDownAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/TYAlertController/TYAlertDropDownAnimation.m -------------------------------------------------------------------------------- /TYAlertControllerDemo/TYAlertController/TYAlertFadeAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/TYAlertController/TYAlertFadeAnimation.h -------------------------------------------------------------------------------- /TYAlertControllerDemo/TYAlertController/TYAlertFadeAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/TYAlertController/TYAlertFadeAnimation.m -------------------------------------------------------------------------------- /TYAlertControllerDemo/TYAlertController/TYAlertScaleFadeAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/TYAlertController/TYAlertScaleFadeAnimation.h -------------------------------------------------------------------------------- /TYAlertControllerDemo/TYAlertController/TYAlertScaleFadeAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/TYAlertController/TYAlertScaleFadeAnimation.m -------------------------------------------------------------------------------- /TYAlertControllerDemo/TYAlertController/TYAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/TYAlertController/TYAlertView.h -------------------------------------------------------------------------------- /TYAlertControllerDemo/TYAlertController/TYAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/TYAlertController/TYAlertView.m -------------------------------------------------------------------------------- /TYAlertControllerDemo/TYAlertController/TYBaseAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/TYAlertController/TYBaseAnimation.h -------------------------------------------------------------------------------- /TYAlertControllerDemo/TYAlertController/TYBaseAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/TYAlertController/TYBaseAnimation.m -------------------------------------------------------------------------------- /TYAlertControllerDemo/TYAlertController/TYShowAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/TYAlertController/TYShowAlertView.h -------------------------------------------------------------------------------- /TYAlertControllerDemo/TYAlertController/TYShowAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/TYAlertController/TYShowAlertView.m -------------------------------------------------------------------------------- /TYAlertControllerDemo/TYAlertController/UIView+TYAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/TYAlertController/UIView+TYAlertView.h -------------------------------------------------------------------------------- /TYAlertControllerDemo/TYAlertController/UIView+TYAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/TYAlertController/UIView+TYAlertView.m -------------------------------------------------------------------------------- /TYAlertControllerDemo/TYAlertController/UIView+TYAutoLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/TYAlertController/UIView+TYAutoLayout.h -------------------------------------------------------------------------------- /TYAlertControllerDemo/TYAlertController/UIView+TYAutoLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/TYAlertController/UIView+TYAutoLayout.m -------------------------------------------------------------------------------- /TYAlertControllerDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/ViewController.h -------------------------------------------------------------------------------- /TYAlertControllerDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/ViewController.m -------------------------------------------------------------------------------- /TYAlertControllerDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/main.m -------------------------------------------------------------------------------- /TYAlertControllerDemo/screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemo/screen.jpg -------------------------------------------------------------------------------- /TYAlertControllerDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemoTests/Info.plist -------------------------------------------------------------------------------- /TYAlertControllerDemoTests/TYAlertControllerDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/TYAlertControllerDemoTests/TYAlertControllerDemoTests.m -------------------------------------------------------------------------------- /screenshot/TYAlertControllerDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/12207480/TYAlertController/HEAD/screenshot/TYAlertControllerDemo.gif --------------------------------------------------------------------------------