Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

iOS SDK client for Split Software

License

NotificationsYou must be signed in to change notification settings

splitio/ios-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build StatusBuild StatusBuild Status

Overview

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.

Twitter Follow

Compatibility

This SDK is compatible with iOS deployment target versions 9.0 and later, and Swift version 4 and later.

Getting started

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.

Submitting issues

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.

Contributing

Please seeContributors Guide to find all you need to submit a Pull Request (PR).

License

Licensed under the Apache License, Version 2.0. See:Apache License.

About Split

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:

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.


[8]ページ先頭

©2009-2025 Movatter.jp