Giter Club home page Giter Club logo

Comments (5)

mineschan avatar mineschan commented on July 21, 2024

Hi Rafa, I'm glad you like it.

I've tried your situation, so far it's okay for me. What iOS version u using?

from mztimerlabel.

rafaismyname avatar rafaismyname commented on July 21, 2024

Yep, its super cool, thanks for this pod!

I'm under 7.0....
I don't know if thats the issue, but i think its a memory warning issue... :(
Once it worked for half an hour in background, but not for an full hour... it also depends on the phone usage...

I think ill store when i started the timer, and when the app comes active again, it re-starts the timmer again...

What you think?

from mztimerlabel.

mineschan avatar mineschan commented on July 21, 2024

Even in the example those timers only use like 25mb of memory. I am not sure if it's about the memory.

Is it only the timer reset or the others thing like views and view controllers?

from mztimerlabel.

basememara avatar basememara commented on July 21, 2024

I'm seeing strange things too when the timer goes in the background for 20+ mins. To get around this, I had to do this:

    override func viewDidLoad() {
        countdownTimer = MZTimerLabel(label: myLabel, andTimerType: MZTimerLabelTypeTimer)

        // When app becomes active, re-run to refresh timer
        NSNotificationCenter.defaultCenter().addObserver(self,
            selector: "updateCountDownTimer",
            name: UIApplicationWillEnterForegroundNotification,
            object: nil)
    }

    override func viewWillAppear(animated: Bool) {
        timerDate = //some date
        countdownTimer.setCountDownToDate(timerDate)
        countdownTimer.start()
    }

    func updateCountDownTimer() {
        // Countdown looses its place after app leaves foreground for 20+ mins
        if timerDate > NSDate() {
            countdownTimer.reset()
            countdownTimer.setCountDownToDate(timerDate)
            countdownTimer.start()
        }
    }

from mztimerlabel.

mineschan avatar mineschan commented on July 21, 2024

hey @basememara thanks first. But is that anyway i can bundle your workaround into MZTimerLabel that not requires any further custom implementation from user? otherwise i will try to put this into readme ;)

from mztimerlabel.

Related Issues (20)

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.