Giter VIP home page Giter VIP logo

sfcountdownview's Introduction

SFCountdownView

A simple customizable countdown overlay View.

Alt text

Setup

Installing with CocoaPods

If you're unfamiliar with CocoaPods you can check out this tutorial here.

  1. In Terminal navigate to the root of your project.

  2. Run 'touch Podfile' to create the Podfile.

  3. Open the Podfile using 'open -e Podfile'

  4. Add the pod SFCountdownView to your Podfile.

     platform :ios, '7.0'
     pod 'SFCountdownView'
    
  5. Run pod install.

  6. Open your app's .xcworkspace file to launch Xcode and start using the control!

Usage

  1. Either create SFCountdownView by dragging UIView from storyboard and change implementing class or create it programmatically

  2. Create an outlet (if create via storyboard)

  3. Set up

     // sets the delegate
     self.sfCountdownView.delegate = self;
    
     // background alpha value
     self.sfCountdownView.backgroundAlpha = 0.2;
    
     // the color of the counter
     self.sfCountdownView.countdownColor = [UIColor blackColor];
    
     // countdown start value
     self.sfCountdownView.countdownFrom = 3;
    
     // finish text to display
     self.sfCountdownView.finishText = @"Do it";
    
     // necessary to refresh alpha and countdown color
     [self.sfCountdownView updateAppearance];
    
  4. Countdown interaction

     [self.sfCountdownView start];
     [self.sfCountdownView stop];
    

Delegate Methods

- (void) countdownFinished:(SFCountdownView *)view

Author(s)

Simpliflow GmbH

Thomas Winkler

Licence

Distributed under the MIT License.

sfcountdownview's People

Watchers

James Cloos avatar gryphon avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.