Analytics-Swift for iOS & Apple
With Analytics-Swift, you can send data from iOS, tvOS, iPadOS, WatchOS, macOS and Linux applications to any analytics or marketing tool without having to learn, test, or implement a new API every time. Analytics-Swift is compatible with both Swift and Objective-C applications.
If you’re migrating to Analytics-Swift from Analytics iOS (Classic), you can skip to the migration guide.
Benefits of Analytics-Swift
Analytics-Swift provides several key benefits including improvements in stability, performance, and developer experience when compared to Analytics iOS (Classic).
Performance
Analytics-Swift offers improved performance when compared to Analytics iOS. For a more detailed overview, you can reference the blog post.
- Faster event processing and deliver
- Significantly lower CPU usage
- Small memory & disk usage footprint
Developer Experience
Analytics-Swift adds several improvements to the overall experience of using the core SDK, as well as improvements to the overall Plugin Architecture.
- Ability to use Type Safe data structures rather than just dictionaries.
- Simpler syntax and more developer friendly overall.
- More customization options than ever before.
Device Mode Transformations & Filtering
For the first time ever, developers can filter and transform their users’ events even before the events leave the mobile device. What’s more, these Filters & transformations can be applied dynamically (either through the Segment Dashboard, or Javascript uploaded to the workspace) and do not require any app updates.
Learn more about Destination Filters on Mobile, and Edge Functions on Mobile.
Getting started
To get started with the Analytics-Swift mobile library:
- Create a Source in Segment.
- Go to Connections > Sources > Add Source.
- Search for Apple and click Add source.
- Add the Analytics dependency to your application.
Add the Swift package,
git@github.com:segmentio/analytics-swift.git
as a dependency through either of these 2 options:- Your package.swift file
- Xcode
- Xcode 12: File > Swift Packages > Add Package Dependency
- Xcode 13: File > Add Packages…
After installing the package, you can reference Analytics-Swift by importing Segment’s Analytics package with
import Segment
. - Initialize and configure the Analytics-Swift client.
For example, in a lifecycle method such as
didFinishLaunchingWithOptions
in iOS:
var analytics: Analytics? = nil
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
let configuration = Configuration(writeKey: "WRITE_KEY")
.trackApplicationLifecycleEvents(true)
.flushInterval(10)
analytics = Analytics(configuration: configuration)
}
@import Segment;
...
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
// Override point for customization after application launch.
SEGConfiguration *config = [[SEGConfiguration alloc] initWithWriteKey:@"WRITE_KEY"];
config.trackApplicationLifecycleEvents = YES;
_analytics = [[SEGAnalytics alloc] initWithConfiguration: config];
[self.analytics track:@"Example Event"];
[self.analytics track:@"Example Properties" properties:@{@"email": @"sloth@segment.com"}];
return YES;
}
These are the options you can apply to configure the client:
Option Name | Description |
---|---|
writeKey required |
This is your Segment write key. |
apiHost |
The default is set to api.segment.io/v1 . This sets a default API Host to which Segment sends event. |
autoAddSegmentDestination |
The default is set to true . This automatically adds the Segment Destination plugin. Set to false if you want to add plugins to the Segment Destination. |
cdnHost |
The default is set to cdn-settings.segment.com/v1 . This sets a default CDN Host from which Segment retrieves settings. |
defaultSettings |
The default is set to {} . This is the settings object used as fallback in case of network failure. |
flushAt |
The default is set to 20 . The count of events at which Segment flushes events. |
flushInterval |
The default is set to 30 (seconds). The interval in seconds at which Segment flushes events. |
trackApplicationLifecycleEvents |
The default is set to true . This automatically tracks lifecycle events. Set to false to stop tracking lifecycle events. |
AppClip Tracking
If you are tracking App Clips using iOS or Swift libraries, you may encounter zeros in your device ID. Segment recommends that you set your own device ID in these instances to avoid this issue.
Core tracking methods
Once you’ve installed the Analytics-Swift library, you can start collecting data through Segment’s tracking methods:
Destinations
Destinations are the business tools or apps that Segment forwards your data to. Adding Destinations allow you to act on your data and learn more about your customers in real time.
Segment offers support for two different types of Destinations, learn more about the differences between the two here.
Tools and extensions
Analytics for Swift is built with extensibility in mind. Use the tools list below to improve data collection.
If you are using the Analytics iOS (Classic) SDK, you can find the documentation here. Many of the features available in the Analytics-Swift SDK are not available in the Analytics iOS (Classic) SDK.
This page was last modified: 29 Jun 2023
Need support?
Questions? Problems? Need more info? Contact Segment Support for assistance!