├── .gitignore ├── AWNotification-Info.plist ├── AWNotification.h ├── AWNotification.m ├── AWNotification.xcodeproj └── project.pbxproj ├── AWNotificationViewController.xib ├── AWNotification_Prefix.pch ├── Classes ├── AWNotificationAppDelegate.h ├── AWNotificationAppDelegate.m ├── AWNotificationViewController.h └── AWNotificationViewController.m ├── MainWindow.xib ├── README.mdown ├── Screenshots ├── FullScreen_Failure.png ├── FullScreen_Normal.png ├── FullScreen_Success.png ├── Pill_Failure.png ├── Pill_Normal.png ├── Pill_Success.png ├── RoundedRect_Failure.png ├── RoundedRect_Normal.png └── RoundedRect_Success.png ├── check.png ├── main.m └── x.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/.gitignore -------------------------------------------------------------------------------- /AWNotification-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/AWNotification-Info.plist -------------------------------------------------------------------------------- /AWNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/AWNotification.h -------------------------------------------------------------------------------- /AWNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/AWNotification.m -------------------------------------------------------------------------------- /AWNotification.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/AWNotification.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AWNotificationViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/AWNotificationViewController.xib -------------------------------------------------------------------------------- /AWNotification_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/AWNotification_Prefix.pch -------------------------------------------------------------------------------- /Classes/AWNotificationAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/Classes/AWNotificationAppDelegate.h -------------------------------------------------------------------------------- /Classes/AWNotificationAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/Classes/AWNotificationAppDelegate.m -------------------------------------------------------------------------------- /Classes/AWNotificationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/Classes/AWNotificationViewController.h -------------------------------------------------------------------------------- /Classes/AWNotificationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/Classes/AWNotificationViewController.m -------------------------------------------------------------------------------- /MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/MainWindow.xib -------------------------------------------------------------------------------- /README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/README.mdown -------------------------------------------------------------------------------- /Screenshots/FullScreen_Failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/Screenshots/FullScreen_Failure.png -------------------------------------------------------------------------------- /Screenshots/FullScreen_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/Screenshots/FullScreen_Normal.png -------------------------------------------------------------------------------- /Screenshots/FullScreen_Success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/Screenshots/FullScreen_Success.png -------------------------------------------------------------------------------- /Screenshots/Pill_Failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/Screenshots/Pill_Failure.png -------------------------------------------------------------------------------- /Screenshots/Pill_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/Screenshots/Pill_Normal.png -------------------------------------------------------------------------------- /Screenshots/Pill_Success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/Screenshots/Pill_Success.png -------------------------------------------------------------------------------- /Screenshots/RoundedRect_Failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/Screenshots/RoundedRect_Failure.png -------------------------------------------------------------------------------- /Screenshots/RoundedRect_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/Screenshots/RoundedRect_Normal.png -------------------------------------------------------------------------------- /Screenshots/RoundedRect_Success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/Screenshots/RoundedRect_Success.png -------------------------------------------------------------------------------- /check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/check.png -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/main.m -------------------------------------------------------------------------------- /x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbw/AWNotification/HEAD/x.png --------------------------------------------------------------------------------