├── NotificationCenter.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── PhantomDev.xcuserdatad │ └── xcschemes │ ├── NotificationCenter.xcscheme │ ├── NotificationCenterContentA.xcscheme │ ├── NotificationCenterContentB.xcscheme │ ├── NotificationCenterContentD.xcscheme │ ├── NotificationCenterService.xcscheme │ └── xcschememanagement.plist ├── NotificationCenter.xcworkspace ├── contents.xcworkspacedata └── xcuserdata │ └── PhantomDev.xcuserdatad │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── NotificationCenter ├── AppDelegate+JPushAPNS.m ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon的副本 2.png │ │ ├── icon的副本 3.png │ │ ├── icon的副本 4.png │ │ ├── icon的副本 5.png │ │ ├── icon的副本 6-1.png │ │ ├── icon的副本 6.png │ │ ├── icon的副本 7.png │ │ └── icon的副本.png │ ├── Contents.json │ ├── default_launch.imageset │ │ ├── Contents.json │ │ └── default_launch.png │ └── notification_launch.imageset │ │ ├── Contents.json │ │ └── notification_launch.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── NotificationCenter.entitlements ├── NotificationCenter │ ├── AccessoryImageViewController.h │ ├── AccessoryImageViewController.m │ ├── AccessoryVideoViewController.h │ ├── AccessoryVideoViewController.m │ ├── ActionNoOperationViewController.h │ ├── ActionNoOperationViewController.m │ ├── ActionOperationInputViewController.h │ ├── ActionOperationInputViewController.m │ ├── ActionOperationViewController.h │ ├── ActionOperationViewController.m │ ├── ContentFeedbackViewController.h │ ├── ContentFeedbackViewController.m │ ├── CustomContentViewController.h │ ├── CustomContentViewController.m │ ├── LaunchScreenViewController.h │ ├── LaunchScreenViewController.m │ ├── NotificationCenterViewController.h │ ├── NotificationCenterViewController.m │ ├── RemoveDefaultContentViewController.h │ ├── RemoveDefaultContentViewController.m │ ├── SimpleLocalViewController.h │ ├── SimpleLocalViewController.m │ ├── SoundAndBadgeViewController.h │ ├── SoundAndBadgeViewController.m │ ├── TwoTitleLocalViewController.h │ └── TwoTitleLocalViewController.m ├── Resource │ ├── accessory_icon.png │ ├── notification_sound.wav │ └── notification_video.m4v ├── ThirdLibrary │ └── JPush │ │ ├── JPUSHService.h │ │ └── jpush-ios-2.1.9.a ├── ViewController.h ├── ViewController.m └── main.m ├── NotificationCenterContentA ├── Base.lproj │ └── MainInterface.storyboard ├── Info.plist ├── NotificationViewController.h └── NotificationViewController.m ├── NotificationCenterContentB ├── Base.lproj │ └── MainInterface.storyboard ├── Info.plist ├── NotificationViewController.h └── NotificationViewController.m ├── NotificationCenterContentD ├── Base.lproj │ └── MainInterface.storyboard ├── Info.plist ├── NotificationViewController.h └── NotificationViewController.m ├── NotificationCenterService ├── Info.plist ├── NotificationService.h └── NotificationService.m ├── Podfile ├── Podfile.lock ├── Pods ├── Headers │ ├── Private │ │ ├── MBProgressHUD │ │ │ └── MBProgressHUD.h │ │ └── Masonry │ │ │ ├── MASCompositeConstraint.h │ │ │ ├── MASConstraint+Private.h │ │ │ ├── MASConstraint.h │ │ │ ├── MASConstraintMaker.h │ │ │ ├── MASLayoutConstraint.h │ │ │ ├── MASUtilities.h │ │ │ ├── MASViewAttribute.h │ │ │ ├── MASViewConstraint.h │ │ │ ├── Masonry.h │ │ │ ├── NSArray+MASAdditions.h │ │ │ ├── NSArray+MASShorthandAdditions.h │ │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ │ ├── View+MASAdditions.h │ │ │ └── View+MASShorthandAdditions.h │ └── Public │ │ ├── MBProgressHUD │ │ └── MBProgressHUD.h │ │ └── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraintMaker.h │ │ ├── MASLayoutConstraint.h │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewConstraint.h │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── View+MASAdditions.h │ │ └── View+MASShorthandAdditions.h ├── MBProgressHUD │ ├── LICENSE │ ├── MBProgressHUD.h │ ├── MBProgressHUD.m │ └── README.mdown ├── Manifest.lock ├── Masonry │ ├── LICENSE │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ └── View+MASShorthandAdditions.h │ └── README.md ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── PhantomDev.xcuserdatad │ │ └── xcschemes │ │ ├── MBProgressHUD.xcscheme │ │ ├── Masonry.xcscheme │ │ ├── Pods-NotificationCenter.xcscheme │ │ └── xcschememanagement.plist └── Target Support Files │ ├── MBProgressHUD │ ├── MBProgressHUD-dummy.m │ ├── MBProgressHUD-prefix.pch │ └── MBProgressHUD.xcconfig │ ├── Masonry │ ├── Masonry-dummy.m │ ├── Masonry-prefix.pch │ └── Masonry.xcconfig │ └── Pods-NotificationCenter │ ├── Pods-NotificationCenter-acknowledgements.markdown │ ├── Pods-NotificationCenter-acknowledgements.plist │ ├── Pods-NotificationCenter-dummy.m │ ├── Pods-NotificationCenter-frameworks.sh │ ├── Pods-NotificationCenter-resources.sh │ ├── Pods-NotificationCenter.debug.xcconfig │ └── Pods-NotificationCenter.release.xcconfig └── README.md /NotificationCenter.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NotificationCenter.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NotificationCenter.xcodeproj/xcuserdata/PhantomDev.xcuserdatad/xcschemes/NotificationCenter.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter.xcodeproj/xcuserdata/PhantomDev.xcuserdatad/xcschemes/NotificationCenter.xcscheme -------------------------------------------------------------------------------- /NotificationCenter.xcodeproj/xcuserdata/PhantomDev.xcuserdatad/xcschemes/NotificationCenterContentA.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter.xcodeproj/xcuserdata/PhantomDev.xcuserdatad/xcschemes/NotificationCenterContentA.xcscheme -------------------------------------------------------------------------------- /NotificationCenter.xcodeproj/xcuserdata/PhantomDev.xcuserdatad/xcschemes/NotificationCenterContentB.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter.xcodeproj/xcuserdata/PhantomDev.xcuserdatad/xcschemes/NotificationCenterContentB.xcscheme -------------------------------------------------------------------------------- /NotificationCenter.xcodeproj/xcuserdata/PhantomDev.xcuserdatad/xcschemes/NotificationCenterContentD.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter.xcodeproj/xcuserdata/PhantomDev.xcuserdatad/xcschemes/NotificationCenterContentD.xcscheme -------------------------------------------------------------------------------- /NotificationCenter.xcodeproj/xcuserdata/PhantomDev.xcuserdatad/xcschemes/NotificationCenterService.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter.xcodeproj/xcuserdata/PhantomDev.xcuserdatad/xcschemes/NotificationCenterService.xcscheme -------------------------------------------------------------------------------- /NotificationCenter.xcodeproj/xcuserdata/PhantomDev.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter.xcodeproj/xcuserdata/PhantomDev.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /NotificationCenter.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NotificationCenter.xcworkspace/xcuserdata/PhantomDev.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter.xcworkspace/xcuserdata/PhantomDev.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /NotificationCenter/AppDelegate+JPushAPNS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/AppDelegate+JPushAPNS.m -------------------------------------------------------------------------------- /NotificationCenter/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/AppDelegate.h -------------------------------------------------------------------------------- /NotificationCenter/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/AppDelegate.m -------------------------------------------------------------------------------- /NotificationCenter/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /NotificationCenter/Assets.xcassets/AppIcon.appiconset/icon的副本 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/Assets.xcassets/AppIcon.appiconset/icon的副本 2.png -------------------------------------------------------------------------------- /NotificationCenter/Assets.xcassets/AppIcon.appiconset/icon的副本 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/Assets.xcassets/AppIcon.appiconset/icon的副本 3.png -------------------------------------------------------------------------------- /NotificationCenter/Assets.xcassets/AppIcon.appiconset/icon的副本 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/Assets.xcassets/AppIcon.appiconset/icon的副本 4.png -------------------------------------------------------------------------------- /NotificationCenter/Assets.xcassets/AppIcon.appiconset/icon的副本 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/Assets.xcassets/AppIcon.appiconset/icon的副本 5.png -------------------------------------------------------------------------------- /NotificationCenter/Assets.xcassets/AppIcon.appiconset/icon的副本 6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/Assets.xcassets/AppIcon.appiconset/icon的副本 6-1.png -------------------------------------------------------------------------------- /NotificationCenter/Assets.xcassets/AppIcon.appiconset/icon的副本 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/Assets.xcassets/AppIcon.appiconset/icon的副本 6.png -------------------------------------------------------------------------------- /NotificationCenter/Assets.xcassets/AppIcon.appiconset/icon的副本 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/Assets.xcassets/AppIcon.appiconset/icon的副本 7.png -------------------------------------------------------------------------------- /NotificationCenter/Assets.xcassets/AppIcon.appiconset/icon的副本.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/Assets.xcassets/AppIcon.appiconset/icon的副本.png -------------------------------------------------------------------------------- /NotificationCenter/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /NotificationCenter/Assets.xcassets/default_launch.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/Assets.xcassets/default_launch.imageset/Contents.json -------------------------------------------------------------------------------- /NotificationCenter/Assets.xcassets/default_launch.imageset/default_launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/Assets.xcassets/default_launch.imageset/default_launch.png -------------------------------------------------------------------------------- /NotificationCenter/Assets.xcassets/notification_launch.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/Assets.xcassets/notification_launch.imageset/Contents.json -------------------------------------------------------------------------------- /NotificationCenter/Assets.xcassets/notification_launch.imageset/notification_launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/Assets.xcassets/notification_launch.imageset/notification_launch.png -------------------------------------------------------------------------------- /NotificationCenter/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /NotificationCenter/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /NotificationCenter/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/Info.plist -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter.entitlements -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/AccessoryImageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/AccessoryImageViewController.h -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/AccessoryImageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/AccessoryImageViewController.m -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/AccessoryVideoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/AccessoryVideoViewController.h -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/AccessoryVideoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/AccessoryVideoViewController.m -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/ActionNoOperationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/ActionNoOperationViewController.h -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/ActionNoOperationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/ActionNoOperationViewController.m -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/ActionOperationInputViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/ActionOperationInputViewController.h -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/ActionOperationInputViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/ActionOperationInputViewController.m -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/ActionOperationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/ActionOperationViewController.h -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/ActionOperationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/ActionOperationViewController.m -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/ContentFeedbackViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/ContentFeedbackViewController.h -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/ContentFeedbackViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/ContentFeedbackViewController.m -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/CustomContentViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/CustomContentViewController.h -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/CustomContentViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/CustomContentViewController.m -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/LaunchScreenViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/LaunchScreenViewController.h -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/LaunchScreenViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/LaunchScreenViewController.m -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/NotificationCenterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/NotificationCenterViewController.h -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/NotificationCenterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/NotificationCenterViewController.m -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/RemoveDefaultContentViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/RemoveDefaultContentViewController.h -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/RemoveDefaultContentViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/RemoveDefaultContentViewController.m -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/SimpleLocalViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/SimpleLocalViewController.h -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/SimpleLocalViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/SimpleLocalViewController.m -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/SoundAndBadgeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/SoundAndBadgeViewController.h -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/SoundAndBadgeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/SoundAndBadgeViewController.m -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/TwoTitleLocalViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/TwoTitleLocalViewController.h -------------------------------------------------------------------------------- /NotificationCenter/NotificationCenter/TwoTitleLocalViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/NotificationCenter/TwoTitleLocalViewController.m -------------------------------------------------------------------------------- /NotificationCenter/Resource/accessory_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/Resource/accessory_icon.png -------------------------------------------------------------------------------- /NotificationCenter/Resource/notification_sound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/Resource/notification_sound.wav -------------------------------------------------------------------------------- /NotificationCenter/Resource/notification_video.m4v: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/Resource/notification_video.m4v -------------------------------------------------------------------------------- /NotificationCenter/ThirdLibrary/JPush/JPUSHService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/ThirdLibrary/JPush/JPUSHService.h -------------------------------------------------------------------------------- /NotificationCenter/ThirdLibrary/JPush/jpush-ios-2.1.9.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/ThirdLibrary/JPush/jpush-ios-2.1.9.a -------------------------------------------------------------------------------- /NotificationCenter/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/ViewController.h -------------------------------------------------------------------------------- /NotificationCenter/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/ViewController.m -------------------------------------------------------------------------------- /NotificationCenter/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenter/main.m -------------------------------------------------------------------------------- /NotificationCenterContentA/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenterContentA/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /NotificationCenterContentA/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenterContentA/Info.plist -------------------------------------------------------------------------------- /NotificationCenterContentA/NotificationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenterContentA/NotificationViewController.h -------------------------------------------------------------------------------- /NotificationCenterContentA/NotificationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenterContentA/NotificationViewController.m -------------------------------------------------------------------------------- /NotificationCenterContentB/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenterContentB/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /NotificationCenterContentB/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenterContentB/Info.plist -------------------------------------------------------------------------------- /NotificationCenterContentB/NotificationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenterContentB/NotificationViewController.h -------------------------------------------------------------------------------- /NotificationCenterContentB/NotificationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenterContentB/NotificationViewController.m -------------------------------------------------------------------------------- /NotificationCenterContentD/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenterContentD/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /NotificationCenterContentD/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenterContentD/Info.plist -------------------------------------------------------------------------------- /NotificationCenterContentD/NotificationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenterContentD/NotificationViewController.h -------------------------------------------------------------------------------- /NotificationCenterContentD/NotificationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenterContentD/NotificationViewController.m -------------------------------------------------------------------------------- /NotificationCenterService/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenterService/Info.plist -------------------------------------------------------------------------------- /NotificationCenterService/NotificationService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenterService/NotificationService.h -------------------------------------------------------------------------------- /NotificationCenterService/NotificationService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/NotificationCenterService/NotificationService.m -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Headers/Private/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- 1 | ../../../MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/Masonry.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/MBProgressHUD/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/MBProgressHUD/LICENSE -------------------------------------------------------------------------------- /Pods/MBProgressHUD/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/MBProgressHUD/MBProgressHUD.h -------------------------------------------------------------------------------- /Pods/MBProgressHUD/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/MBProgressHUD/MBProgressHUD.m -------------------------------------------------------------------------------- /Pods/MBProgressHUD/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/MBProgressHUD/README.mdown -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Masonry/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/LICENSE -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/Masonry.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /Pods/Masonry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Masonry/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/PhantomDev.xcuserdatad/xcschemes/MBProgressHUD.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Pods.xcodeproj/xcuserdata/PhantomDev.xcuserdatad/xcschemes/MBProgressHUD.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/PhantomDev.xcuserdatad/xcschemes/Masonry.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Pods.xcodeproj/xcuserdata/PhantomDev.xcuserdatad/xcschemes/Masonry.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/PhantomDev.xcuserdatad/xcschemes/Pods-NotificationCenter.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Pods.xcodeproj/xcuserdata/PhantomDev.xcuserdatad/xcschemes/Pods-NotificationCenter.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/PhantomDev.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Pods.xcodeproj/xcuserdata/PhantomDev.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/MBProgressHUD/MBProgressHUD-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/MBProgressHUD/MBProgressHUD.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Target Support Files/MBProgressHUD/MBProgressHUD.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Target Support Files/Masonry/Masonry-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Target Support Files/Masonry/Masonry-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Target Support Files/Masonry/Masonry.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-NotificationCenter/Pods-NotificationCenter-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Target Support Files/Pods-NotificationCenter/Pods-NotificationCenter-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-NotificationCenter/Pods-NotificationCenter-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Target Support Files/Pods-NotificationCenter/Pods-NotificationCenter-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-NotificationCenter/Pods-NotificationCenter-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Target Support Files/Pods-NotificationCenter/Pods-NotificationCenter-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-NotificationCenter/Pods-NotificationCenter-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Target Support Files/Pods-NotificationCenter/Pods-NotificationCenter-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-NotificationCenter/Pods-NotificationCenter-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Target Support Files/Pods-NotificationCenter/Pods-NotificationCenter-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-NotificationCenter/Pods-NotificationCenter.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Target Support Files/Pods-NotificationCenter/Pods-NotificationCenter.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-NotificationCenter/Pods-NotificationCenter.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/Pods/Target Support Files/Pods-NotificationCenter/Pods-NotificationCenter.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ColdJuzi/NotificationCenterDemo/HEAD/README.md --------------------------------------------------------------------------------