├── .gitignore ├── APNSDemo.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── APNSDemo ├── APNSDemo.entitlements ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.h ├── ViewController.m ├── bing.mp3 └── main.m ├── APNSDemoTests ├── APNSDemoTests.m └── Info.plist ├── APNSDemoUITests ├── APNSDemoUITests.m └── Info.plist ├── NotificationServer ├── Info.plist ├── NotificationService.h └── NotificationService.m ├── NotificationViewController ├── Base.lproj │ └── MainInterface.storyboard ├── Info.plist ├── NotificationViewController.h └── NotificationViewController.m └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /APNSDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/APNSDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /APNSDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/APNSDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /APNSDemo/APNSDemo.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/APNSDemo/APNSDemo.entitlements -------------------------------------------------------------------------------- /APNSDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/APNSDemo/AppDelegate.h -------------------------------------------------------------------------------- /APNSDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/APNSDemo/AppDelegate.m -------------------------------------------------------------------------------- /APNSDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/APNSDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /APNSDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/APNSDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /APNSDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/APNSDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /APNSDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/APNSDemo/Info.plist -------------------------------------------------------------------------------- /APNSDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/APNSDemo/ViewController.h -------------------------------------------------------------------------------- /APNSDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/APNSDemo/ViewController.m -------------------------------------------------------------------------------- /APNSDemo/bing.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/APNSDemo/bing.mp3 -------------------------------------------------------------------------------- /APNSDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/APNSDemo/main.m -------------------------------------------------------------------------------- /APNSDemoTests/APNSDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/APNSDemoTests/APNSDemoTests.m -------------------------------------------------------------------------------- /APNSDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/APNSDemoTests/Info.plist -------------------------------------------------------------------------------- /APNSDemoUITests/APNSDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/APNSDemoUITests/APNSDemoUITests.m -------------------------------------------------------------------------------- /APNSDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/APNSDemoUITests/Info.plist -------------------------------------------------------------------------------- /NotificationServer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/NotificationServer/Info.plist -------------------------------------------------------------------------------- /NotificationServer/NotificationService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/NotificationServer/NotificationService.h -------------------------------------------------------------------------------- /NotificationServer/NotificationService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/NotificationServer/NotificationService.m -------------------------------------------------------------------------------- /NotificationViewController/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/NotificationViewController/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /NotificationViewController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/NotificationViewController/Info.plist -------------------------------------------------------------------------------- /NotificationViewController/NotificationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/NotificationViewController/NotificationViewController.h -------------------------------------------------------------------------------- /NotificationViewController/NotificationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/NotificationViewController/NotificationViewController.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangzhen6/Demo-APNSDemo/HEAD/README.md --------------------------------------------------------------------------------