Coder Social home page Coder Social logo

mstimer's Introduction

MSTimer

A proxy object for NSTimer that avoids retain cycles

Why

Retain cycles are annoying to deal with. As explained here.

The problem lies in the fact that if MyViewController becomes a NSTimer's target, it is retained by the NSTimer. And so if MyViewController also happens to own the NSTimer, a retain cycle is created.

To fix this problem, we use a proxy object MSTimer which takes the burden off of MyViewController. So when you dismiss MyViewController, its dealloc gets called as expected.

This is accomplished by using message forwarding. Meaning our MSTimer will forward any messages/methods to the underlying NSTimer.

How To Use

Instantiate using class method, as you would a regular NSTimer. NOTE: this adds the timer to the runloop with specified mode right away.

To create one:

MSTimer *timer = [MSTimer startTimerWithTimeInterval:1 target:self selector:@selector(doSomething) userInfo:nil repeats:YES runLoop:[NSRunLoop currentRunLoop] mode:NSDefaultRunLoopMode];

Treat the timer object as if it was a NSTimer:

[timer isValid];
[timer setFireDate:[NSDate date]];
...

To clean up (important!!):

[timer invalidate];
[timer release];

License

MSTimer is available under the MIT license. See the LICENSE file for more info.

mstimer's People

Contributors

bogardon avatar

Stargazers

Jackson Deane avatar Bob Edmonston avatar

Watchers

 avatar James Cloos 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.