Swiftpack.co - apptentive/apptentive-kit-ios as Swift Package

Swiftpack.co is a collection of thousands of indexed Swift packages. Search packages.
See all packages published by apptentive.
apptentive/apptentive-kit-ios v6.7.0
ApptentiveKit SDK for iOS and iPadOS
⭐️ 6
🕓 6 days ago
iOS
.package(url: "https://github.com/apptentive/apptentive-kit-ios.git", from: "v6.7.0")

ApptentiveKit

ApptentiveKit lets you integrate your iPhone and iPad apps with Apptentive's customer communications platform.

Use Apptentive features to improve your app's App Store ratings, collect and respond to customer feedback, show surveys at specific points within your app, and more.

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.

GitHub

link
Stars: 6
Last commit: 6 days ago
Advertisement: IndiePitcher.com - Cold Email Software for Startups

Release Notes

v6.7.0
6 days ago

2024-04-17 - v6.7.0

New Features

  • Added rich text support through dashboard for Prompts and Surveys

Bugs Fixed:

  • Fixed a concurrency issue that could lead to a crash when an HTTP request is retried
  • Fixed an issue where the background of a Prompt or Love Dialog remained responsive to taps in Flutter
  • Restored the ability to set a Prompt or Love Dialog header image via UIAppearance

Swiftpack is being maintained by Petr Pavlik | @ptrpavlik | @swiftpackco | API | Analytics