A UITextField object is a control that displays editable text and sends an action message to a target object when the user presses the return button. You typically use this class to gather small amounts of text from the user and perform some immediate action, such as a search operation, based on ...

learn more… | top users | synonyms

0
votes
1answer
13 views

Why first date picker take selected date value from second date picker?

I have 2 date pickers and 1 button.When I selected dates from pickers first picker take second picker value.I selected 19.05.2013 from first picker and 20.05.2013 from second picker but output like; ...
0
votes
1answer
24 views

Border color of UITextField view in UITableViewCell

I am trying to set the border color of UITextField inside dynamic cell of UITableView. That's the code: UIColor *searchBorderColor = [UIColor colorWithRed:160.0/255.0 ...
0
votes
1answer
38 views

How to give stroke color and shining effect to text entered in uitextfield?

I need to give stroke and shinny effect to text entered in UITextField.
0
votes
3answers
49 views

scroll table view top when selecting an textfield

I Have a UITableView with custom cell with UITextField and buttons on that ,my issue is when ever the user selects some textfields in bottom keybord is hiding that textfield , i tried to scroll up the ...
0
votes
2answers
61 views

Push a string and display in a UITextField

I am doing a small app and I am using a UISplitVIewController and I am trying to push the UITable cell text to the detail view and display it in a UITextField. I have managed to push the string nicely ...
0
votes
1answer
40 views

UITextField becomeFirstResponder is not working inside dynamic cell

I have UITextField inside the first cell of UITableView, whenever it changes the table is changing too. The problem is that when the table is updated the field loses first responder status and ...
0
votes
2answers
31 views

How to disable keyboard but enable UITextFields when using UIDatePicker?

This one is kind of hard to explain, so ask any questions you need to clarify the question. I have an iPad app (XCode 4.2, iOS 6, ARC and Storyboards). In this app, I have a UIPopover that contains ...
0
votes
1answer
34 views

Calculation returns 0 objective-c [duplicate]

I'm trying to calculate an average where i am getting the value from a textfield and multiplying it by the value of a label. int grade1 = [[self.Cw1Grade text]intValue]; int grade1weight = ...
0
votes
0answers
38 views

BecomeFirstResponder() not working on UITextField

I want to focus my UITextfield in my bottom toolbar, so on ViewWillAppear I wrote the following code: textBarcode.BecomeFirstResponder (); But the textBarcode doesn't become the focus. I also tried ...
-1
votes
0answers
13 views

XCode Keyboard not working after returning navigation [Solved] [closed]

After two days driving me crazy I found one solution for this issue but please if you have a better option post it here. The context: Xcode 4.5, Storyboard, two views, two modal ...
1
vote
2answers
30 views

How do i identify which textField triggered textFieldDidEndEditing on dynamically created UITableCell containing 2 uiTextFields

iOS 6 xcode 4.6.2 using storyboards Hi guys my problem is this I am using a dynamic UITableView which consists of a number of cells each of which have two UITextFields on them. The two fields are ...
-2
votes
4answers
59 views

How to enter text in textfield from 5 pixels after in ios [duplicate]

I have UITextField of which I've added an image. Everything looks good, except that the text starts from zero X-coordinate, but I want it to start after 5 pixels in text field.
-1
votes
0answers
99 views

Why application does not work like working on simulator when run on device [closed]

When I use simulator, don't have any problem it and my array works excellently. But when application is run iPhone device, application doesn't work like it works on simulator ? Anybody have idea? ...
0
votes
2answers
41 views

How to parse uitexfield for send soap call?

I have 1 textfield and an static array.I have items in array like; 12345-NAME OF BRANCH.But I want send only 12345 from textfield to soap call.How can I do ? Thanks .h -(IBAction)Send:(UIButton ...
0
votes
5answers
64 views

How to distinguish between UIAlertView Cancel and UIAlertViewStyleSecureTextInput's TextView Return?

I have created a UIAlertView alert = [[UIAlertView alloc] initWithTitle:@"Test" message:@"Working" delegate:self ...
4
votes
2answers
31 views

How align Text in UITextField vertically center? [duplicate]

Is there some default setting to center textfield vertically
0
votes
2answers
20 views

Weird Comparison of UITextField and UILabel

How come this happens? Using the code... - (IBAction)dismissKeyboard:(id)sender { if(textField.text == label.text) { NSLog(@"Correct!"); } else { NSLog(@"Error?"); ...
0
votes
0answers
34 views

How to load array from web service for searching in uitextfield?

I wish to send an array of say stationNames in a SOAP call . Please help. This code for manual input to array - (void)autoCompleteTextField:(MLPAutoCompleteTextField *)textField ...
1
vote
3answers
36 views

Why Uitextfield return null?

I selected date from picker in textfield and click send button for soap call.But textfield return null.The message of soap is < date1 >null< date1 > < date2 >null< date2 > .h ...
1
vote
3answers
55 views

how to set a hex color to textfield border in ios

UIColor *bgcolour = [BackgroundLayer colorWithHexString:@"F13982"]; textField.layer.borderColor=[[UIColor colorWithCGColor:(__bridge CGColorRef)(bgcolour)] CGColor]; Can anyone say how to set the ...
-2
votes
0answers
41 views

How to search in textfield like google search

I want to load field to textfield from web service like search in google.In this sample I created array and I entered item manual.I want to load from web service.I founded some example here but they ...
-1
votes
1answer
40 views

Texfield sending null value to web service

I have 3 UITextField's, date1, date2(UIDatePicker) and station name(Like combobox). First of all I must load all station name to station name UITextField.When I enter A listing starting with A ...
0
votes
1answer
13 views

QuartzCore method of styling UITextField border not working

I cannot for the life of me work out why this code isn't working: @username_textfield = UITextField.alloc.initWithFrame([[50,50],[50,50]]) @username_textfield.layer.cornerRadius=1 ...
4
votes
3answers
43 views

Get position of cell or text field in this cell

I have a split view controller: view & tableview. In this table view i have custom cells with text field. I don't know how many cells will i have, so it generate automaticly. And now I'm trying ...
-1
votes
0answers
8 views

how to add more than one selections from made using a picker view to a uitextfield

I have pickerview associated with a uitextfield. When i click on the textfield a picker pops up. When I perform selections from the pickerview more than one time, I need to get all the selctions in ...
0
votes
1answer
15 views

Refer to a particular UITextField inside a particular UITableViewCell

I have UITableView that is created programatically, and I have written code to programmatically create a UITextField on each and every cell. When the user taps on the text field, a picker appears and ...
0
votes
2answers
69 views

How to add a custom clear button in UITextField?

I want to resize the default clear button of UITextField. After I googled a lot, I came to know there is no way to modify it. So I decided to go with Custom option ie, by adding UIButton to text ...
1
vote
1answer
30 views

Change UITextField background when editing begins for multiple fields

So I found this thread a while ago: Change UITextField background when editing begins The top answer is a fantastic resource for changing the background image of a textField when the user edits it. ...
0
votes
2answers
53 views

How to add clear button UITextfield? [duplicate]

I would like to add a clear button inside a UITextfield but it doesn't show up. This the code for the UITextfield: @implementation databaseEnterDataViewController @synthesize customer = customer_ ...
0
votes
1answer
36 views

Custom Keyboard with Text Input to UITextField

I'm having difficulties with implementing a keyboard accessory that inputs text into a UITextField when a key is pressed on the accessory. This is was the rough draft looks like: Keyboard Accessory ...
0
votes
1answer
31 views

How to set UITextField for decimal values?

I have a ManageItemVC that has a bunch of UITextFields, and one is for price. I've put a placeholder as 0.00, and the user can use the decimal keyboard to input. I'd like to always keep it in a #.## ...
-1
votes
1answer
40 views

Weird error while using UITextFieldDelegate

I have this error while messing with UITextField delegate: Can't find keyplane that supports type 8 for keyboard Wildcat-Landscape-QWERTY-Pad; using ...
-1
votes
1answer
24 views

textField Input String convert into UINT32

need a little bit help. How I could save a Number from a textfield into a NSInteger variable? I got this propertys: @property(weak, nonatomic) IBOutlet UITextField *textFieldPort; @property ...
0
votes
1answer
30 views

How to use Search Bar for enter text and filter for selection?

I use textfield for enter field of my web service.For example I entered StationID textfield=35016. I have total 770 StationID and every station have a name. stationId 35016 name is New Istanbul LTD ...
1
vote
4answers
62 views

UITextField in TableView Cells

iam trying to add UITextField dynamically into TableView this is my code (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath UITableViewCell *cell = ...
1
vote
2answers
27 views

textFieldDidEndEditing not recognising text in textfields correctly

I am trying to detect a change in text in a textField and I have a peculiar error. The code below compares the impactLabel1 text with a variable impactlabel1 previously set. If there is a change in ...
0
votes
2answers
61 views

How to use date picker instead of textfield?

I have 2 textfields and 1 button. I used textfield for entered date but I must use date picker. This code for entering date to textfield and display some fields to labels.How I change for date picker ...
0
votes
4answers
40 views

Clear and exit button

I have 2 questions. 1) How can I clear all entered textfields and label text when pressed clear button ? 2) How can I exit from application when pressed exit button ? Thanks
0
votes
2answers
31 views

Formating a single textfield so that it display is different to all the others

How would i set the currency in a text field to display it as a localized currency, with a leading 0. If someone types in 16.25 pence it would be formated as 0.1625£ respectively. I am using ...
1
vote
2answers
39 views

Position text in a textfield

I would like to position the text in a textfield more specifically. My current code: UITextField * textFieldIndustry = [[UITextField alloc] initWithFrame:CGRectMake(10, 10, 465, 68)]; ...
0
votes
1answer
39 views

Best way to implement UIToolbar with UITextField above keyboard

What is the best way to have a UIToolbar with a UITextField appear above the keyboard ? In particular, I'm looking for a way to implement this in iOS 6. The basic functionality I am trying to ...
0
votes
3answers
47 views

Checking textfield value for date in iOS

I used 3 textfield(string) and 1 button for display entered textfield in soap result. When clicked button TextField1=StationID --> 12345 TextField2 =FirstDate --> ...
0
votes
2answers
42 views

Getting the cursor position of UITextField in ios

I am trying to control the cursor position in the UITextField. Users cannot insert more than one character at a time into the middle of the text field. It moves it to the end of the textfield. So this ...
0
votes
0answers
30 views

UITextField padding alternative way

Heads up on the question - I need a way to implement UITextField padding without using an empty UIView. Reason - my app freezes when I use a UIView for that. All explained below. First, a little ...
0
votes
2answers
34 views

Hide keyboard when changing view

I've already checked other similar questions but none of them solved my problem. I have a window-based application and I'm using more windows in the same .xib file. In the first window, I have some ...
-3
votes
0answers
24 views

I want to implement validation in my IOS app same as attached image [closed]

I want to implement Validation in my Iphone app same as attached image. I am new in iphone app so, i don't know how to implement it. Any help or suggestion would be appreciated. Thanks! Shailesh
0
votes
0answers
53 views

iOS: changing cursor position on user tap in UITextField

I have a scenario where I need to select the entire user input in UITextField when user first clicks on the UITextField and then on the second click , the text should be unselected and the cursor ...
-2
votes
1answer
53 views

UITextField check empty after editing [closed]

So I have next problem UITextField strange behavior when delete symbol in first time and I see next decision: check after first editing textfield text and replace it if empty. How can I check it, no ...
-1
votes
0answers
44 views

app crash on deleting text from uitextfield and uitextview

When I trying to delete text from menucontroller then my app crash with following message * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-deleteObject: ...
1
vote
5answers
43 views

Make keyboard disappear with textField and textView

I'd like to dismiss the keyboard with a text field using - (BOOL)textFieldShouldReturn:(UITextField *)textField {, but I need to do the same with a text view, so I'll use - ...

1 2 3 4 5 56