Re: Limiting NSTextField to numbers?
Re: Limiting NSTextField to numbers?
- Subject: Re: Limiting NSTextField to numbers?
- From: Nick Zitzmann <email@hidden>
- Date: Wed, 21 Jan 2009 13:31:55 -0700
On Jan 21, 2009, at 3:06 PM, Brooke Gravitt wrote:
The good news is I'm not a *complete* idiot, as it appears the option
just isn't there for the iPhone/iTouch.
Bad news is I *still* have no clue how to do what I'd like to.
I'm going to dig into the docs again, but if anyone can clue-bat me
into knowledge-ness, I'd be really grateful.
You could always attach the formatter manually, like this: (written in
Mail, untested, use at your own risk, and all that)
- (void)awakeFromNib
{
NSNumberFormatter *formatter = [[[NSNumberFormatter alloc] init]
autorelease];
// Normally you'd have to set the formatter behavior here, but this
isn't necessary on the iPhone/iPod
[formatter setNumberStyle:NSNumberFormatterDecimalStyle];
[someTextField setFormatter:formatter];
}
Nick Zitzmann
<http://www.chronosnet.com/>
_______________________________________________
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