Hi all,
In my project (my first one) I try to assign a text to a textfield created in the Interface Builder.
[date setText:@"2010"];
I also tried using
date.text = @"2010"
I have created the Outlet and don't get any error... the text just doesn't show up.
Just in case it matters... I prevent the keyboard from showing up and display a calendar instead (works).
Any idea what could be wrong?
Could it be a problem that I'm using delegate methods on the textFields to prevent displaying the keyboard?