- Xcode - The easiest way to get Xcode is from the App Store, but you can also download it from developer.apple.com if you have an AppleID registered with an Apple Developer account.
CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:
$ gem install cocoapodsCocoaPods version 1.3.1 or newer is recommended to build PushNotifications.
To integrate PushNotifications into your Xcode project using CocoaPods, specify it in your Podfile:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!
# Replace `<Your Target Name>` with your app's target name.
target '<Your Target Name>' do
pod 'PushNotifications'
endThen, run the following command:
$ pod install --repo-updateCarthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
Carthage version 0.26.2 or newer is recommended to build PushNotifications.
You can install Carthage with Homebrew using the following command:
$ brew update
$ brew install carthageTo integrate PushNotifications into your Xcode project using Carthage, specify it in your Cartfile:
github "pusher/push-notifications-swift"
Run carthage update to build the framework and drag the built PushNotifications.frameworkinto your Xcode project.
- shared - View in Source
- start(instanceId:) - View in Source
- registerForRemoteNotifications - View in Source
- registerForRemoteNotifications(options:) - View in Source
- registerDeviceToken(_:completion:) - View in Source
- subscribe(interest:completion:) - View in Source
- setSubscriptions(interests:completion:) - View in Source
- unsubscribe(interest:completion:) - View in Source
- unsubscribeAll(completion:) - View in Source
- getInterests() - View in Source
- handleNotification(userInfo:) - View in Source
- Found a bug? Please open an issue.
- Have a feature request. Please open an issue.
- If you want to contribute, please submit a pull request (preferrably with some tests).
PushNotifications is owned and maintained by Pusher.
PushNotifications is released under the MIT license. See LICENSE for details.