It's a lightweight example of iOS feature toggling system inspired by Martin Fowler. If you have any questions you can ask me in telegram.
You can also watch the video of my speech on YouTube (in Russian).
Initialize feature service somewhere in your code:
private let featureService = FeaturesService()
Get features from backend:
featureService.getFeatures {}
Check if feature is enabled:
if featureService.enabled(.myFeature) {
// doSomething
}
- Ilya Tsarev - Initial work - iltsarev
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE file for details.