Contents

apptentive/apptentive-kit-ios

ApptentiveKit SDK for iOS and iPadOS

Adding the ApptentiveKit Dependency

We recommend using Swift Package Manager to include ApptentiveKit in your project.

In Xcode, choose File > Add Packages… and add the URL for this repository.

Using ApptentiveKit in Your App

To use Apptentive features in your Swift files, you will have to import the ApptentiveKit module:

import ApptentiveKit

Early in your app's lifecycle, call the register(with:completion:) method on the shared Apptentive instance:

Apptentive.shared.register(with: .init(key: "<#Your Apptentive App Key#>", signature: "<#Your Apptentive App Signature#>"))

At various points in your app, use the engage(event:from:completion:) method to record events with ApptentiveKit. When an event is engaged, the SDK can be configured to display an interaction, such as a Note, Survey, or Love Dialog, and you can define segments based on which events were engaged on your customer's device.

@IBAction func completePurchase(sender: UIButton) {
    // ...
    
    Apptentive.shared.engage("purchase_complete", from: self) // where `self` is a UIViewController instance.
}

If you plan to use Message Center, you should have a button in your app where your customers can open Message Center:

@IBAction func openMessageCenter(sender: UIButton) {
    // ...
    
    Apptentive.shared.presentMessageCenter(from: self) // where `self` is a UIViewController instance.
}

Further Reading

Please visit our Customer Learning Center for more extensive integration and migration guides, as well as guides for product owners and developers for other platforms.

Contributing

Our client code is completely open source, and we welcome contributions to the Apptentive SDK! If you have an improvement or bug fix, please first read our contribution agreement.

Reporting Issues

If you experience an issue with the Apptentive SDK, please open a GitHub issue.

Package Metadata

Repository: apptentive/apptentive-kit-ios

Homepage: https://www.apptentive.com

Stars: 7

Forks: 5

Open issues: 16

Default branch: main

Primary language: swift

License: BSD-3-Clause

README: README.md