0
votes
1answer
30 views
Data Entry Form Libraries available for Cocoa Touch?
Does anyone know of any libraries for Objective-C Cocoa Touch that provide data entry fields for all different types of inputs (e.g. Date fields, Boolean, Numbers, Integers, etc). …
0
votes
1answer
11 views
change color of UITextField in iPhone
hello,
I have placed UITextField in UITableView and my TableViewCell color is Yellow , normally the background color of TextField in white i want to change the color of TextFiel …
1
vote
1answer
20 views
UITextField: move view when keyboard appears
Hello!
I'm currently working on an iPhone application with a single view, which has multiple UITextFields for input. When the keyboard shows, it overlays the bottom textfields. So …
0
votes
1answer
51 views
self.delegate = self; what’s wrong in doing that?
Hi,
self.delegate = self; what's wrong in doing that?
and what is the correct way of doing it?
Thanks, Nir.
Code:
(UITextField*)initWith:(id)sender:(float)X:(float)Y:(float)wid …
1
vote
3answers
133 views
How to find out what UITextField caused a UIKeyboardWillShowNotification?
I am trying to use a customized keyboard in my application, but I am hitting problems when trying to restrict it to one particular UITextField.
I based my code on this Xcode proje …
0
votes
1answer
30 views
Telling a UITextField to become first responder while embedded in a UITableViewCell
I have a UITextField that is a subview of a UITableViewCell.
When my view loads, I want the text field to become first responder. I have a pointer to the text field in the table c …
0
votes
2answers
54 views
iphone - Get dynamically created UITextField by tag
I add a UITextField to a table cell dynamically in my app. I'd like to implement a "backgroundClick" method to dismiss the keyboard if the user presses outside the textfield (and o …
0
votes
2answers
82 views
Programatically Select all text in UITextField
How can I programatically select all text in UITextField?
Thanks!
0
votes
1answer
27 views
why does the uitextfield never return nil when it becomes first responder?
when i make my textfield become first responder, the text field never returns nil, even if i force it to be nil by myTextField.text = nil;
as soon as i comment out the "[myTextFiel …
0
votes
1answer
40 views
Can’t reassign value to text field the second time
The code below when it 1st load, i assign a pageName for selectedIDtext for it. And when the second time it loads I wanted to remove the data init and update with a new pageName. B …
0
votes
2answers
34 views
Managing UITextField.text property
Well, I have a UITextField.
Inside it is a property UITextField.text.
Is it ok to do:
// Assume we have UITextField * tf somewhere..
// now set its text..
tf.text = [ [ NSString …
0
votes
2answers
39 views
UITextField Memory Leak
Hi, In my code, there is an memory leak, when the Keyboard appears for the first time when I am about to enter values in the UITextField. Can someone please give me some idea about …
0
votes
1answer
12 views
UITextField ellipses
I have a UITextField but when it overflows I want it to scroll not use an ellipses. Can you do this on the iPhone?
0
votes
3answers
229 views
Custom UITextField/UIButton
What I'm trying to do is replicate the NSTokenField like UITextField seen in the Mail app and Messages app (type a contact and it comes up with suggestions).
I've got the autocomp …
0
votes
5answers
374 views
Placeholder in UITextView
Hi all!
I'm making an application which uses an UITextView. Now I want the UITextView to have a placeholder similar to the one you can set for an UITextField.
Does anyone know ho …
