Re: enabling/ disabling a uitextfield

2009-09-15 Thread Erik Buck
Do you have some objection to [myTextFiled setEnabled:YES]; and  [myTextFiled setEnabled:NO]; ?Perhaps you prefer myTextFile.enabled = NO; ? UITextField is a subclass of UIControl which means that all of UIControls properties and methods are available in UITextField. ___

Re: enabling/ disabling a uitextfield

2009-09-15 Thread Mark Bateman
Hi, anyone know how I can enable ./ disable a UItext field outside of IB. I can do this as part of the XIB but I want to disable interaction on a particular condition. Also is there a keyboard property i can set to enable the caps lock key (not the auto capitalization) __