Skip to content

Set up InboxUI with CocoaPods

1. Run ‘pod init’ command from the terminal in your project directory.

2. Open the newly created Podfile.

3. Add Pushwoosh dependency under your project name target:

# Uncomment the next line to define a global platform for your project
# platform: ios, ‘9.0’
target ‘MyAppdo
# Comment the next line if you don’t want to use dynamic frameworks
use_frameworks!
# Pods for MyApp
pod 'PushwooshInboxUI'
end

4. Run the following command in your terminal in your project directory:

pod install

5. Open the newly created <your_project_name>.xcworkspace file.

6. Well done! You’ve just integrated Pushwoosh InboxUI to your project.

Add Pushwoosh InboxUI code

To show Inbox UI in your app, add Inbox view controller:

self.navigationController?.pushViewController(PWIInboxUI.createInboxController(with: PWIInboxStyle.default()), animated: true)

To make the Inbox match your app’s appearance, change the parameters of PWIInboxStyle. You can customize such parameters as font, background color, etc.

//creating a new Inbox style
let inboxStyle = PWIInboxStyle.customStyle(withDefaultImageIcon: UIImage.init(named: "custom_image"),
textColor: UIColor.darkText,
accentColor: UIColor.blue,
font: UIFont.systemFont(ofSize: 17))
inboxStyle?.backgroundColor = UIColor.init(white: 1, alpha: 1)
inboxStyle?.listErrorMessage = NSLocalizedString("Custom error message", comment: "Custom error message")
inboxStyle?.listEmptyMessage = NSLocalizedString("Custom empty message", comment: "Custom empty message")
PWIInboxStyle.setupDefaultStyle(inboxStyle)

Customization

To customize Inbox UI style, please refer to:

For more details, take a look at Inbox Sample.