Tally 1.0.2

Tally 1.0.2

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Aug 2017
SwiftSwift Version 3.0
SPMSupports SPM

Maintained by Laurent Shala.



Tally 1.0.2

Tally

Description

Tally is used to check how many times the user has opened the application using a simple if statement. This adds a lot of flexability on when you want something to happen. Want to fire off an alert after the 15th opening? Easy.

Contents

  1. Installation
  2. Supported OS & SDK versions
  3. Usage
  4. License
  5. Contact

Installation

Manually

If you prefer not to use CocoaPods, you can integrate Tally into your project manually.

Supported OS & SDK Versions

  • Supported build target - iOS 8.0+

Usage

Using tally is very simple.

First: import the pod

import Tally

Second: add the following snippet to application(_:didFinishLaunchingWithOptions:) in your AppDelegate

Tally.didOpenApplication()

Third: When you want to check for a certain threshold of app launches, use

if Tally.hasOpenedApp(numberOfTimes: 3) {
    // Do anything your heart desires
}

License

Tally is developed by Laurent Shala at StockX and is released under the MIT license. See the LICENSE file for details.

Contact

Feel free to follow me on my personal Twitter account. If you find any problems with the project or have ideas to enhance it, feel free to open a GitHub issue and/or create a pull request.