- Notifications
You must be signed in to change notification settings - Fork18
iOS SDK client for Split Software
License
splitio/ios-client
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
This SDK is designed to work with Split, the platform for controlled rollouts, which serves features to your users via a Split feature flag to manage your complete customer experience.
This SDK is compatible with iOS deployment target versions 9.0 and later, and Swift version 4 and later.
Below is a simple example that describes the instantiation and most basic usage of our SDK:
// Create a Split configlet config = SplitClientConfig()// Create a Key to evaluatelet key: Key = Key(matchingKey: "CUSTOMER_ID")// Setup your Split SDK Keylet sdkKey: String = "YOUR_SDK_KEY"// Factory builderlet factoryBuilder = DefaultSplitFactoryBuilder()factoryBuilder.setApiKey(sdkKey).setKey(key).setConfig(config)// Create a Split factorylet factory = factoryBuilder.build()// Get a Split Clientlet client = factory?.client// Subscribe to SDK READY event and evaluate your feature flagclient?.on(event: SplitEvent.sdkReady) { if let client = client { let treatment = client.getTreatment("my_first_feature_flag") if treatment == "on" { print("I'm ON") } else if treatment == "off" { print("I'm OFF") } else { print("CONTROL was returned, there was an error") } }}
Please refer toour official docs to learn about all the functionality provided by our SDK and the configuration options available for tailoring it to your current application setup.
The Split team monitors all issues submitted to thisissue tracker. We encourage you to use this issue tracker to submit any bug reports, feedback, and feature enhancements. We'll do our best to respond in a timely manner.
Please seeContributors Guide to find all you need to submit a Pull Request (PR).
Licensed under the Apache License, Version 2.0. See:Apache License.
Split is the leading Feature Delivery Platform for engineering teams that want to confidently deploy features as fast as they can develop them. Split’s fine-grained management, real-time monitoring, and data-driven experimentation ensure that new features will improve the customer experience without breaking or degrading performance. Companies like Twilio, Salesforce, GoDaddy and WePay trust Split to power their feature delivery.
To learn more about Split, contacthello@split.io, or get started with feature flags for free athttps://www.split.io/signup.
Split has built and maintains SDKs for:
- .NETGithubDocs
- AndroidGithubDocs
- AngularGithubDocs
- GOGithubDocs
- iOSGithubDocs
- JavaGithubDocs
- JavaScriptGithubDocs
- JavaScript for BrowserGithubDocs
- NodeGithubDocs
- PHPGithubDocs
- PythonGithubDocs
- ReactGithubDocs
- React NativeGithubDocs
- ReduxGithubDocs
- RubyGithubDocs
For a comprehensive list of open source projects visit ourGithub page.
Learn more about Split:
Visitsplit.io/product for an overview of Split, or visit our documentation athelp.split.io for more detailed information.
About
iOS SDK client for Split Software