Push notifications, In-App Messaging, and more for iOS, tvOS, and watchOS applications.
- Push Notifications - Standard push notifications with rich media support
- In-App Messages - Customizable in-app messaging
- Tags & Segmentation - User targeting and segmentation
- Inbox - Built-in message inbox functionality
- Analytics - Delivery and conversion tracking
- VoIP Push Notifications - CallKit integration for VoIP apps
- Live Activities - iOS 16.1+ Live Activities with push updates
- tvOS Support - Push notifications and Rich Media for Apple TV
- Foreground Push - Custom foreground notifications with animations and effects
In Xcode, go to File β Add Package Dependencies and enter:
https://github.com/Pushwoosh/Pushwoosh-XCFramework
Select the modules you need in your target's Frameworks, Libraries, and Embedded Content section.
Available modules:
PushwooshFramework- Core SDK (required)PushwooshCore- Core functionality (required)PushwooshBridge- Bridge module (required)PushwooshLiveActivities- Live Activities support (optional)PushwooshVoIP- VoIP push notifications (optional)PushwooshTVOS- tvOS support (optional)PushwooshForegroundPush- Custom foreground notifications (optional)PushwooshKeychain- Persistent device ID across app reinstalls (optional)PushwooshGRPC- gRPC transport for improved performance (optional)
Add to your Podfile:
# Core SDK
pod 'PushwooshXCFramework'
# Optional modules
pod 'PushwooshXCFramework/PushwooshLiveActivities'
pod 'PushwooshXCFramework/PushwooshVoIP'
pod 'PushwooshXCFramework/PushwooshTVOS'
pod 'PushwooshXCFramework/PushwooshForegroundPush'
pod 'PushwooshXCFramework/PushwooshKeychain'
pod 'PushwooshXCFramework/PushwooshGRPC'
pod 'PushwooshInboxUIXCFramework'Then run:
pod installIntegrate Pushwoosh iOS SDK using AI coding assistants (Claude Code, Cursor, GitHub Copilot, etc.).
Requirement: Your AI assistant must have access to Context7 MCP server or web search capabilities.
Choose the prompt that matches your task:
Integrate Pushwoosh iOS SDK into my iOS project using Swift Package Manager.
Requirements:
- Add SPM dependency from https://github.com/Pushwoosh/Pushwoosh-XCFramework
- Configure Info.plist with Pushwoosh App ID: YOUR_APP_ID
- Register for push notifications in AppDelegate
Use Context7 MCP to fetch Pushwoosh iOS SDK documentation.
Show me how to handle push notification callbacks (receive, open) with Pushwoosh SDK in iOS. I want to implement PWMessagingDelegate and add analytics tracking for these events.
Use Context7 MCP to fetch Pushwoosh iOS SDK documentation for PWMessagingDelegate.
Show me how to use Pushwoosh tags for user segmentation in iOS. Create example helper class with methods for setting and getting tags.
Use Context7 MCP to fetch Pushwoosh iOS SDK documentation for setTags and getTags.
Integrate Pushwoosh Live Activities into my iOS app. Show me how to:
- Create an ActivityAttributes model
- Start a Live Activity
- Update it via push notifications
Use Context7 MCP to fetch PushwooshLiveActivities documentation.
import PushwooshFramework
func application(_ application: UIApplication,
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
Pushwoosh.sharedInstance().registerForPushNotifications()
return true
}func application(_ application: UIApplication,
didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
Pushwoosh.sharedInstance().handlePushRegistration(deviceToken)
}func application(_ application: UIApplication,
didReceiveRemoteNotification userInfo: [AnyHashable: Any],
fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
Pushwoosh.sharedInstance().handlePushReceived(userInfo)
completionHandler(.newData)
}Core SDK for push notifications, in-app messages, and analytics.
Requirements: iOS 11.0+ | Swift 5.0+
VoIP push notifications with CallKit integration.
Requirements: iOS 14.0+ | CallKit
Live Activities support with push-to-start (iOS 17.2+) and real-time updates.
Requirements: iOS 16.1+ | WidgetKit | ActivityKit
Push notifications and Rich Media HTML for Apple TV.
Requirements: tvOS 11.0+
Custom foreground notifications with animations, haptic feedback, and visual effects.
Requirements: iOS 13.0+ | Supports Liquid Glass effect on iOS 26+
Persistent device identification (HWID) that survives app reinstallation using Keychain storage.
Requirements: iOS 11.0+
Optional gRPC transport layer for improved network performance. Automatically falls back to REST if unavailable.
Requirements: iOS 13.0+
- π Documentation
- π¬ Support Portal
- π Report Issues
Pushwoosh iOS SDK is available under the MIT license. See LICENSE for details.
Made with β€οΈ by Pushwoosh