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 7524819
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T03:09:50+00:00 2026-05-30T03:09:50+00:00

I expect that code to display New Version at every 3 seconds but it

  • 0

I expect that code to display “New Version” at every 3 seconds but it doesn’t.

Car.h

#import <Foundation/Foundation.h>

@interface Car : NSObject


-(void)displayVersion;
@end 

Car.m

#import "Car.h"

@implementation Car

-(void)displayVersion
{
    NSLog(@"New version");
}

@end

main.c

#import <Foundation/Foundation.h>
#import "Car.h"

int main (int argc, const char * argv[])
{
    @autoreleasepool 
    {
        Car *ford = [[Car alloc]init];

        [NSTimer scheduledTimerWithTimeInterval:3 
                                         target:ford
                                         selector:@selector(displayVersion) 
                                         userInfo:nil 
                                         repeats:YES];
    }
    return 0;
}

What is wrong here ?

PS: I hate that “Your post does not have much context to explain the code sections; please explain your scenario more clearly”

I think the code is the best explanation of the problem !

  • 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-05-30T03:09:51+00:00Added an answer on May 30, 2026 at 3:09 am

    NSTimer relies on a running NSRunLoop to function. Your program terminates immediately after you create and schedule the timer, and an NSRunLoop is never set up anyway. Typically, in a Cocoa app, the call to NSApplicationMain() in main() sets up up the main run loop and begins “spinning” it. You should create a new project using the default Cocoa app template in Xcode, and create your timer in the NSApplicationDelegate’s -(void)applicationDidFinishLaunching: method.

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

Sidebar

Related Questions

In the following example should I expect that values.size() will be called every time
Every time I make a project I develop several generic routines/modules/libraries that I expect
I'm working on a web page that will display code inside pre tags, and
Is it alright to expect that the user using the back end will have
Say I have two functions that expect ...rest parameters private function a(...myParams):void { trace(myParams.length);
I'd like to create an expect script that connects to the server via telnet
I'm writing a server that I expect to be run by many different people,
Let's say that I expect a list of items from the standard input which
I'm starting on a project that I expect will include a substantial amount of
If I have an element on a web page that I expect to be

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.