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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T14:40:44+00:00 2026-05-20T14:40:44+00:00

I am trying to get NSNumber to respond to the initWithFloat method, but my

  • 0

I am trying to get NSNumber to respond to the initWithFloat method, but my program is responding with an “NSNumber may not respond to initWithFloat method” and is not returning the right result.

Here is the code:

#import "VariableTestAppDelegate.h"

@implementation VariableTestAppDelegate

@synthesize window;

- (void)applicationDidFinishLaunching:(NSNotification *)aNotification{ 
    NSNumber *myNumber;
    myNumber = [NSNumber initWithFloat:3.47];
    NSLog(@"The value in NSNumber is %@", myNumber);
}
@end

The error message which gets sent to the console reads:

2011-03-12 09:00:08.569 VariableTest[6228:a0f] +[NSNumber initWithFloat:]: unrecognized selector sent to class 0x7fff70bfd808
2011-03-12 09:00:08.572 VariableTest[6228:a0f] +[NSNumber initWithFloat:]: unrecognized selector sent to class 0x7fff70bfd808

What is the problem? TIA.

  • 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-20T14:40:45+00:00Added an answer on May 20, 2026 at 2:40 pm

    -initWithFloat: is not a class method. You need to create an instance first and then send it -initWithFloat:.

    myNumber = [[NSNumber alloc] initWithFloat: 34.7];
    

    Or you can use the convenience method

    myNumber = [NSNumber numberWithFloat: 34.7];
    

    This second case gives you an NSNumber that you do not own. If you want to keep it around you need to retain it.

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

Sidebar

Related Questions

I'm trying to get total salary for the whole company by: NSNumber *totalSalary =
Trying to get an ASP application deployed; it worked for a while but then
I've really been trying, but I am just not getting blocks very well. I
I know I am probably missing something pretty basic here, but I am trying
Right, I'm trying to get a label with text in it (done already obviously),
I'm trying to set error message if something is wrong, but I get This
i am trying to get index of an array through indexOfObject method as follows
I'm trying to get a distinct result from NSPredicate. My code: NSFetchRequest *request =
I'm trying get values from a GridView using the following code: foreach (GridViewRow row
Trying to get my css / C# functions to look like this: body {

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.