GithubHelp home page GithubHelp logo

jwccompletiontimeestimator's Introduction

JWCCompletionTimeEstimator

JWC(Pronounced "Juicy")CompletionTimeEstimator helps you tell your users an estimated time until their file will be completed. Simply pass in your progress variable as a float and JWCCompletionTimeEstimator will pass back a NSTimeInterval object that you can do some math with to determine your completion time.

Example:

-(id)init
{
  self = [super init];
  
  if (self != nil)
  {
    //Setup code
    
    myCompletionTimeEstimator = [[JWCCompletionTimeEstimator alloc] init];
  }
  
  return self;
}

-(void)delegateCallThatGivesUsProgress:(float)progress
{
  NSTimeInterval estimatedCompletionTime = [myCompletionTimeEstimator getAmountOfTimeLeftUntilCompletionWithProgress:progress];
  
  long seconds = lroundf(estimatedCompletionTime); // Modulo (%) operator below needs int or long
    
  int hour = seconds / 3600;
  int mins = (seconds % 3600) / 60;
  int secs = seconds % 60;
    
  NSLog(@"We will be done in %d hours, %d mins, %d seconds!", hour, mins,secs);
}

Tips:

  • Make sure to keep a hold of your JWCCompletionTimeEstimator object as it needs to compare the current time with the initial time that the progress began!
  • If you want to reset your object, just use the -(void)reset; method!

I hope this helps you! Please feel free to help make my code better by adding issues. Also, feel free to contact me. Thanks!

jwccompletiontimeestimator's People

Contributors

willchilcutt avatar

Watchers

 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.