Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8525993
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T08:08:31+00:00 2026-06-11T08:08:31+00:00

I have a NSDate variable. From that variable, how I can show a stopwatch

  • 0

I have a NSDate variable. From that variable, how I can show a stopwatch that continuously updates in the view?

I’ve tried [NSTimer scheduledTimerWithTimeInterval] but can’t get it working but also doubt that is the ideal way to do that.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T08:08:33+00:00Added an answer on June 11, 2026 at 8:08 am

    Try this

    - (void)updateTimer
    {
        static NSInteger counter = 0;
        [stopWatchLabel setText:[NSString stringWithFormat:@"Counter: %i", counter++]];
    }
    
    - (IBAction)onStartPressed:(id)sender {
        startDate = [[NSDate date]retain];
    
        // Create the stop watch timer that fires every 10 ms
        stopWatchTimer = [NSTimer scheduledTimerWithTimeInterval:1.0/10.0
                                                          target:self
                                                        selector:@selector(updateTimer)
                                                        userInfo:nil
                                                         repeats:YES];
    }
    

    You have to connect the IBAction to a button, and the stopWatchLabel to a UILabel in the interface builder.

    Found on: http://www.apptite.be/tutorial_ios_stopwatch.php

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Normally i've been passing variable around in init methods, but I can't do that
I have an NSString variable 'body' that I am populating from sqlite3. The string
Possible Duplicate: NSDateFormatter and yyyy-MM-dd I have an NSDate variable in format yyyy-MM-dd that
I have a NSDate *date1 in class1 implementation file(I initialized it as Global variable).
I have been working with NSArray s and NSMutableArray s that store NSDate objects
My problem is this: I can't seem to access the variable todaysDate from the
I have an application that downloads information from a web service and caches it
I have an NSDate* that I'm storing as a property with the retain keyword:
I have an NSDate that I am saving into NSUserDefaults. When my app runs
I have done this several times before but for some reason I can't get

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.