├── .DS_Store ├── EBForeNotification.podspec ├── EBForeNotification ├── .DS_Store ├── Classes │ ├── .DS_Store │ └── EBForeNotification.m └── EBForeNotification.h ├── LICENSE └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikacode/EBForeNotification/e5b2c8542cd26afcd93b19d548515f5592576391/.DS_Store -------------------------------------------------------------------------------- /EBForeNotification.podspec: -------------------------------------------------------------------------------- 1 | # 2 | # Be sure to run `pod spec lint EBForeNotification.podspec' to ensure this is a 3 | # valid spec and to remove all comments including this before submitting the spec. 4 | # 5 | # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html 6 | # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/ 7 | # 8 | 9 | Pod::Spec.new do |s| 10 | 11 | # ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 12 | # 13 | # These will help people to find your library, and whilst it 14 | # can feel like a chore to fill in it's definitely to your advantage. The 15 | # summary should be tweet-length, and the description more in depth. 16 | # 17 | 18 | s.name = "EBForeNotification" 19 | s.version = "1.0.8" 20 | s.summary = "不再更新,请使用新库 EBBannerView,经重写含更多强大功能。No more update, use new pod ‘EBBannerView’, more powerfull/features github.com/pikacode/EBBannerView" 21 | 22 | # This description is used to generate tags and improve search results. 23 | # * Think: What does it do? Why did you write it? What is the focus? 24 | # * Try to keep it short, snappy and to the point. 25 | # * Write the description between the DESC delimiters below. 26 | # * Finally, don't worry about the indent, CocoaPods strips it! 27 | s.description = <<-DESC 28 | 不再更新,请使用新库 EBBannerView,经过重写包含更多强大功能,提供 iOS9/10/11 样式,更可自定义。No more update, please use new pod ‘EBBannerView’, more powerfull and more features https://github.com/pikacode/EBBannerView 29 | DESC 30 | 31 | s.homepage = "https://github.com/Yasashi/EBForeNotification" 32 | # s.screenshots = "https://github.com/Yasashi/EBForeNotification/raw/master/screenshot/screenshot01.gif", "https://github.com/Yasashi/EBForeNotification/raw/master/screenshot/screenshot02.gif" 33 | 34 | 35 | # ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 36 | # 37 | # Licensing your code is important. See http://choosealicense.com for more info. 38 | # CocoaPods will detect a license file if there is a named LICENSE* 39 | # Popular ones are 'MIT', 'BSD' and 'Apache License, Version 2.0'. 40 | # 41 | 42 | #s.license = "MIT" 43 | s.license = { :type => "MIT", :file => "LICENSE" } 44 | # s.license = { :type => "MIT", :file => "FILE_LICENSE" } 45 | 46 | 47 | # ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 48 | # 49 | # Specify the authors of the library, with email addresses. Email addresses 50 | # of the authors are extracted from the SCM log. E.g. $ git log. CocoaPods also 51 | # accepts just a name if you'd rather not provide an email address. 52 | # 53 | # Specify a social_media_url where others can refer to, for example a twitter 54 | # profile URL. 55 | # 56 | 57 | s.author = { "E.B" => "57380422@qq.com" } 58 | # Or just: s.author = "E.B" 59 | # s.authors = { "E.B" => "57380422@qq.com" } 60 | # s.social_media_url = "http://twitter.com/E.B" 61 | 62 | # ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 63 | # 64 | # If this Pod runs only on iOS or OS X, then specify the platform and 65 | # the deployment target. You can optionally include the target after the platform. 66 | # 67 | 68 | # s.platform = :ios 69 | s.platform = :ios, "7.0" 70 | 71 | # When using multiple platforms 72 | s.ios.deployment_target = "7.0" 73 | # s.osx.deployment_target = "10.7" 74 | # s.watchos.deployment_target = "2.0" 75 | # s.tvos.deployment_target = "9.0" 76 | 77 | 78 | # ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 79 | # 80 | # Specify the location from where the source should be retrieved. 81 | # Supports git, hg, bzr, svn and HTTP. 82 | # 83 | 84 | s.source = { :git => "https://github.com/Yasashi/EBForeNotification.git", :tag => "#{s.version}" } 85 | 86 | 87 | # ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 88 | # 89 | # CocoaPods is smart about how it includes source code. For source files 90 | # giving a folder will include any swift, h, m, mm, c & cpp files. 91 | # For header files it will include any header in the folder. 92 | # Not including the public_header_files will make all headers public. 93 | # 94 | 95 | #s.source_files = "Classes", "Classes/**/*.{h,m}" 96 | s.source_files = "EBForeNotification/","EBForeNotification/Classes/*.{h,m}" 97 | 98 | #s.exclude_files = "Classes/Exclude" 99 | 100 | s.public_header_files = "EBForeNotification/EBForeNotification.h" 101 | 102 | 103 | # ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 104 | # 105 | # A list of resources included with the Pod. These are copied into the 106 | # target bundle with a build phase script. Anything else will be cleaned. 107 | # You can preserve files from being cleaned, please don't preserve 108 | # non-essential files like tests, examples and documentation. 109 | # 110 | 111 | # s.resource = "icon.png" 112 | #s.resources = "EBForeNotification/Classes/*.{xib,mp3}" 113 | 114 | # s.preserve_paths = "FilesToSave", "MoreFilesToSave" 115 | 116 | 117 | # ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 118 | # 119 | # Link your library with frameworks, or libraries. Libraries do not include 120 | # the lib prefix of their name. 121 | # 122 | 123 | # s.framework = "SomeFramework" 124 | s.frameworks = "Foundation" 125 | 126 | s.library = "objc" 127 | # s.libraries = "iconv", "xml2" 128 | 129 | 130 | # ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # 131 | # 132 | # If your library depends on compiler flags you can set them in the xcconfig hash 133 | # where they will only apply to your library. If you depend on other Podspecs 134 | # you can include multiple dependencies to ensure it works. 135 | 136 | # s.requires_arc = true 137 | 138 | # s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" } 139 | # s.dependency "JSONKit", "~> 1.4" 140 | 141 | end 142 | -------------------------------------------------------------------------------- /EBForeNotification/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikacode/EBForeNotification/e5b2c8542cd26afcd93b19d548515f5592576391/EBForeNotification/.DS_Store -------------------------------------------------------------------------------- /EBForeNotification/Classes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pikacode/EBForeNotification/e5b2c8542cd26afcd93b19d548515f5592576391/EBForeNotification/Classes/.DS_Store -------------------------------------------------------------------------------- /EBForeNotification/Classes/EBForeNotification.m: -------------------------------------------------------------------------------- 1 | // 2 | // EBForeNotification.m 3 | // iOS-Foreground-Push-Notification 4 | // 5 | // Created by wuxingchen on 16/7/21. 6 | // Copyright © 2016年 57380422@qq.com. All rights reserved. 7 | // 8 | 9 | #import "EBForeNotification.h" 10 | 11 | 12 | @implementation EBForeNotification 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /EBForeNotification/EBForeNotification.h: -------------------------------------------------------------------------------- 1 | 2 | // Copyright © 2016年 57380422@qq.com. All rights reserved. 3 | 4 | // version 1.0.8 5 | 6 | #import 7 | 8 | @interface EBForeNotification : NSObject 9 | @end 10 | 11 | /* 12 | 13 | 不再更新,请使用新库 EBBannerView,经过重写包含更多强大功能,提供 iOS9/10/11 样式,更可自定义。 14 | 15 | No more update, please use new pod ‘EBBannerView’, more powerfull and more features 16 | 17 | https://github.com/pikacode/EBBannerView 18 | 19 | */ 20 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Pikachu 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | #### No more update, please use new pod ‘[EBBannerView](https://github.com/pikacode/EBBannerView)’, more powerfull and more features, provide iOS 9/10/11 style, and show any custom view easily. 2 | 3 | #### 不再更新,请使用新库 [EBBannerView](https://github.com/pikacode/EBBannerView),经过重写包含更多强大功能,提供 iOS9/10/11 样式,更可自定义。 4 | 5 | [https://github.com/pikacode/EBBannerView](https://github.com/pikacode/EBBannerView) 6 | --------------------------------------------------------------------------------