├── README.md ├── TopAlertViewDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── TopAlertViewDemo.xccheckout │ └── xcuserdata │ │ └── lulucius.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── LuciusLu.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── TopAlertViewDemo.xcscheme │ │ └── xcschememanagement.plist │ └── lulucius.xcuserdatad │ └── xcschemes │ ├── TopAlertViewDemo.xcscheme │ └── xcschememanagement.plist ├── TopAlertViewDemo ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── TopAlertView │ ├── MozTopAlertView.h │ ├── MozTopAlertView.m │ └── fontawesome │ │ ├── FAImageView.h │ │ ├── FAImageView.m │ │ ├── FontAwesome.ttf │ │ ├── NSString+FontAwesome.h │ │ ├── NSString+FontAwesome.m │ │ ├── UIFont+FontAwesome.h │ │ └── UIFont+FontAwesome.m ├── ViewController.h ├── ViewController.m └── main.m ├── TopAlertViewDemoTests ├── Info.plist └── TopAlertViewDemoTests.m └── topalertview.gif /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/README.md -------------------------------------------------------------------------------- /TopAlertViewDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TopAlertViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TopAlertViewDemo.xcodeproj/project.xcworkspace/xcshareddata/TopAlertViewDemo.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo.xcodeproj/project.xcworkspace/xcshareddata/TopAlertViewDemo.xccheckout -------------------------------------------------------------------------------- /TopAlertViewDemo.xcodeproj/project.xcworkspace/xcuserdata/lulucius.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo.xcodeproj/project.xcworkspace/xcuserdata/lulucius.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TopAlertViewDemo.xcodeproj/xcuserdata/LuciusLu.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo.xcodeproj/xcuserdata/LuciusLu.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TopAlertViewDemo.xcodeproj/xcuserdata/LuciusLu.xcuserdatad/xcschemes/TopAlertViewDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo.xcodeproj/xcuserdata/LuciusLu.xcuserdatad/xcschemes/TopAlertViewDemo.xcscheme -------------------------------------------------------------------------------- /TopAlertViewDemo.xcodeproj/xcuserdata/LuciusLu.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo.xcodeproj/xcuserdata/LuciusLu.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TopAlertViewDemo.xcodeproj/xcuserdata/lulucius.xcuserdatad/xcschemes/TopAlertViewDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo.xcodeproj/xcuserdata/lulucius.xcuserdatad/xcschemes/TopAlertViewDemo.xcscheme -------------------------------------------------------------------------------- /TopAlertViewDemo.xcodeproj/xcuserdata/lulucius.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo.xcodeproj/xcuserdata/lulucius.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TopAlertViewDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo/AppDelegate.h -------------------------------------------------------------------------------- /TopAlertViewDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo/AppDelegate.m -------------------------------------------------------------------------------- /TopAlertViewDemo/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /TopAlertViewDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TopAlertViewDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TopAlertViewDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo/Info.plist -------------------------------------------------------------------------------- /TopAlertViewDemo/TopAlertView/MozTopAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo/TopAlertView/MozTopAlertView.h -------------------------------------------------------------------------------- /TopAlertViewDemo/TopAlertView/MozTopAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo/TopAlertView/MozTopAlertView.m -------------------------------------------------------------------------------- /TopAlertViewDemo/TopAlertView/fontawesome/FAImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo/TopAlertView/fontawesome/FAImageView.h -------------------------------------------------------------------------------- /TopAlertViewDemo/TopAlertView/fontawesome/FAImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo/TopAlertView/fontawesome/FAImageView.m -------------------------------------------------------------------------------- /TopAlertViewDemo/TopAlertView/fontawesome/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo/TopAlertView/fontawesome/FontAwesome.ttf -------------------------------------------------------------------------------- /TopAlertViewDemo/TopAlertView/fontawesome/NSString+FontAwesome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo/TopAlertView/fontawesome/NSString+FontAwesome.h -------------------------------------------------------------------------------- /TopAlertViewDemo/TopAlertView/fontawesome/NSString+FontAwesome.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo/TopAlertView/fontawesome/NSString+FontAwesome.m -------------------------------------------------------------------------------- /TopAlertViewDemo/TopAlertView/fontawesome/UIFont+FontAwesome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo/TopAlertView/fontawesome/UIFont+FontAwesome.h -------------------------------------------------------------------------------- /TopAlertViewDemo/TopAlertView/fontawesome/UIFont+FontAwesome.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo/TopAlertView/fontawesome/UIFont+FontAwesome.m -------------------------------------------------------------------------------- /TopAlertViewDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo/ViewController.h -------------------------------------------------------------------------------- /TopAlertViewDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo/ViewController.m -------------------------------------------------------------------------------- /TopAlertViewDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemo/main.m -------------------------------------------------------------------------------- /TopAlertViewDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemoTests/Info.plist -------------------------------------------------------------------------------- /TopAlertViewDemoTests/TopAlertViewDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/TopAlertViewDemoTests/TopAlertViewDemoTests.m -------------------------------------------------------------------------------- /topalertview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LuciusLu/TopAlertView/HEAD/topalertview.gif --------------------------------------------------------------------------------