isnan
isnan
- Subject: isnan
- From: Development <email@hidden>
- Date: Thu, 2 Apr 2009 21:19:08 -0700
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?
_______________________________________________
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