• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: isnan
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: isnan


  • Subject: Re: isnan
  • From: Greg Parker <email@hidden>
  • Date: Thu, 2 Apr 2009 21:29:05 -0700

On Apr 2, 2009, at 9:19 PM, Development wrote:
I'm trying to detect if an entry in a uitextfield is a number or not but isnan does not seem to work.

	NSString * bLong = [NSString stringWithFormat:@"%@",maLong.text];
	NSString * bLat = [NSString stringWithFormat:@"%@",maLat.text];

	if(isnan([bLat floatValue]) || isnan([bLong floatValue])){
		return;
	}

What am I doing wrong here?

isnan() looks for IEEE-754 NaN values, but -[NSString floatValue] returns 0.0 if the string doesn't start with a number.


There's no way to tell whether -floatValue found a good number or not. Use NSScanner's -scanFloat: to convert a string to a number and also identify invalid input.


-- Greg Parker email@hidden Runtime Wragler


_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


References: 
 >isnan (From: Development <email@hidden>)

  • Prev by Date: Re: Linking the "document edited" flag to the Undo menu item state
  • Next by Date: Re: Bindings and MenuItems
  • Previous by thread: isnan
  • Next by thread: Stop the form from refresh again
  • Index(es):
    • Date
    • Thread