0
votes
2answers
27 views

UITextField blocks scrolling within UITableViewCell

I've got UITextFields within UITableViewCells. The text views seems to be blocking the scrolling. When I put my finger-tip within the text view's bound and try to scroll the whole table, the it won't ...
0
votes
1answer
28 views

UITableView cell title to transfer to a Uitextfield on another view

Is there a way to get the title of a UITableView cell to be carried to a UITextField on another screen when the cell is pressed? So when the cell is pressed, another view opens, which has the ...
-2
votes
4answers
67 views

How to Get the value(label) from the TextField inside the custom cell of a table View to post on the URL [duplicate]

I want my iOS app to pass to a URL the text the user types. The relevant code is pasted below. When I run the app, the text does not get assigned any value. It stays as null. I am new to iOS ...
2
votes
1answer
56 views

UITextField inside UITableViewCell won't become first responder

I have a weird problem with my App. After I read all the questions about pretty much the same problem, I still couldn't find something solving my problem. I use a UITableViewController to display the ...
3
votes
2answers
60 views

UITextField on UITableViewCell stops responding to touches - possibly caused by scrolling offscreen

I have UITextFields on dynamically created custom UITableViewCells. I'm using them to type data ( or pull it in from core data if its an edit) and write the data back out on editingDidEnd. My problem ...
0
votes
2answers
45 views

How to use user input from UITextField to add a new UITableViewCell with an image?

I am becoming increasingly frustrated as I can not figure out how to get this to work. I have searched and searched and nothing seems to be helping me out to get this to do what I want. What I am ...
0
votes
2answers
70 views

How to prevent textfields from getting empty when adding/removing UITableView rows?

I'm creating a UITableView in which product information can be added. In each row, the user can add information about a product, and, obviously, the user can set the number of rows himself. the user ...
0
votes
2answers
22 views

Add specific word at predefined positions automatically in UITextField in custom TableViewCell

I am working on project There is a phone number textField. I want to add phone number like (123)123-1234 As user click on textField it automatically add "("and after three numbers automatically add ...
0
votes
1answer
35 views

textfield text leaves an impression on other textfiled when tableview is scrolled

Hi guys I have custom tableview cells called product cell,rating cell,notify cell,where product cell contains textfield where it used in section 0,1,2,4. the problem is if I input a text in the ...
0
votes
1answer
43 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
2answers
84 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_ ...
1
vote
4answers
82 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 = ...
0
votes
1answer
64 views

Issue with dismissing UITextField in custom UITableViewCell

I've a custom cell I implement in table view. Inside the cell I've a text field (set to number pad keyboard). Inside the table view I've 12 cells. I can dusmiss the keyboard with touchesBegan ...
0
votes
1answer
56 views

UITextField text in UITableViewCell auto reset when scroll down and turn back?

i have a uitableview with muliplte cell. which contains textfileds ,sow when i enter text on textfield and scroll the tableview entered text is erasing My code is static NSString *CellIdentifier ...
0
votes
0answers
34 views

state of UITextfield when reorder control of UITableViewCell is pressed

I have a editable UITableView that has reorder controls on the right side of cells and multiple selection delete buttons on the left hand side. Each custom cell contains a UITextfield with a white ...
0
votes
2answers
60 views

How to activate next and previos UITextField in a UITableView?

I am using this one in my application for adding UITextFields to my UITableViewCells, am now at a loss how I can let the user jump to the next item by using the next button in toolbar in ...
0
votes
3answers
211 views

UITextFields inside UITableViewCells - text disappears when cells go out of view

I have a UITableView with bunch of UITableViewCells. These UITableViewCells have multiple UITextFields inside them. Now every time I scroll up and down, and the UITableViewCells go out of the view, ...
0
votes
1answer
79 views

Prevent keyboard from scrolling UITextField underneath headerview in UITableView?

I have a tableview with a header and under that header I've a couple of UITextFields inside a UITableViewCell. The problem is that when I press the top UITextField, the UITextField scrolls underneath ...
1
vote
2answers
88 views

UITableViewCell/UITextField draw issue when Datasource is larger than row number

So, this is driving me nuts... Everything works great, unless my datasource: an NSMutableArrray: _names contains more items than there are rows visible in the UITableView: namesTable. then all hell ...
0
votes
2answers
77 views

Wrong tag returned of UITextfield inside UITableviewcell After Row Deletion

I have got a UITextfield in each cell, whom I am assigning a tag equal to current row number. cell.textfield.tag = indexPath.row; I need indexpath.row when user ends editing the textfield. -(void) ...
0
votes
1answer
30 views

List with 3 columns editable on the fly

I want to add in an iOS App a list with 3 columns, but I also want that each field could be editable on the fly by clicking directly on it and when I press return it saves the field. Currently I am ...
0
votes
3answers
204 views

Reuse custom UITableViewCell, how to get text of each cell's textfield to save?

I have a custom UITableViewCell whose Nib has a label, a seperator and a textfield (very much like the contact app phone number cell). I have a detail tableview which uses this custom cell for a lot ...
0
votes
0answers
25 views

UITextField to align in the middle rather than top in ios6?

Is there a way to align the text of a UITextField in the middle? I have a UITextField embedded in UITableViewCell and want the text to be in the middle. I know I can make the height of the TextField ...
0
votes
0answers
28 views

How to make a grouped UITableView with editable content? [duplicate]

i have managed to create a simple grouped UITableView. What i want to do is , give the user the ability to write text inside the cells of my tableView. The screenshot above explains better what i am ...
0
votes
2answers
193 views

UITableView doesn't scroll when keyboard appears

I have attempted Apple's example here: http://developer.apple.com/library/ios/#documentation/StringsTextFonts/Conceptual/TextAndWebiPhoneOS/KeyboardManagement/KeyboardManagement.html However, it ...
1
vote
0answers
180 views

Keyboard not showing-up for UITextField in UITableViewCell in iOS 6.x

Working on iPhone/iPad application, Problem: Keyboard not showing-up for UITextField in UITableViewCell in iOS 6.x, but same code works fine on iOS 5.x We developed a UIViewController, in which we ...
1
vote
1answer
241 views

Best route to fit a UITextField to UITableView cell

I am wondering what is the best way to make a UITextField fit a UITableView cell. I have used this method before: @implementation UITextField (custom) - (CGRect)textRectForBounds:(CGRect)bounds { ...
0
votes
1answer
103 views

Using NSMutableArray for UITableviewcell

I am trying to use an NSMutableArray to build my tableview's datasource. The NSMutableArray is empty. - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { ...
0
votes
5answers
77 views

Unable to add text from UITextField to an Array

Currently I have a custom view table cell and a text field just above it. I want to get the text from the UItextfield and put that into an NSMutableArray. Pseudocode: String text = _textfield.text; ...
0
votes
1answer
97 views

Programatically enter edit mode TextField

I got a Editable textfield inside my uitableviewcell and want the user to be able to edit the content of the textfield. This works when the user clicks the small textfield but i want to enter that ...
-1
votes
3answers
66 views

How Can I access the textfields in static TableViewcells without creating referencing outlet?

I have lot of text fields statically placed in static TableViewcells. How can access the text in it without creating referencing outlet for each textfield? I have tried taking subviews of cell. It's ...
1
vote
0answers
311 views

resignFirstResponder of a UITextField in a custom UITableViewCell

I create the table cell like this (it's the first cell of the first section and the only cell with a textField in it): if (indexPath.section == 0 && indexPath.row == 0) { ...
1
vote
7answers
202 views

uitextfield of custom table cell

I am creating a table with three different types of custom cell, One of them, one custom cell is having UITextField. I create two rows using this custom cell. I set tag and delegate for textfields of ...
0
votes
1answer
90 views

Keyboard doesn't appear when first click on UITableViewCell in grouped UITableView

I'm developing an application in iOS6 and i'm using XCode 4.5.2. I've a UITableView which style is grouped. Every single cell has a UITextField which size is exactly equal to UITableViewCell size. To ...
1
vote
1answer
50 views

UITableView editing static cells

I have a best practice question regarding saving data from a UITableView. I have a UITableView with several sections and cells, most of which I have implemented a custom UITableViewCell that displays ...
0
votes
1answer
133 views

UiTextField's Touch Down Event on uitableviewcell doesn't work always

Ok I'm new on iOS, and I found out something really peculiar. I'm using a UITextField embedded in an UITableViewCell, and I'm trying that when I touch the textfield it shows an UIPopOverController ...
1
vote
3answers
246 views

iOS UITextField not clearing when editing

I have a standard UITextField that I have added to a UITableViewCell and whenever I go to edit it, the text that is in it will not clear out. I have tried placing a placeholder and that too will not ...
0
votes
2answers
171 views

Accessing textField embedded in cell

I have created a table which dynamically creates cells which are customized to contain a textField. When I run the program, I am able to enter text into the textFields. However, I am not able to ...
0
votes
3answers
104 views

How do I prevent NSMutableArray from losing data?

The first view of my app is a UITableView. The user will choose an option and the next view will be another UITableView. Now the user can tap on an "add" button to be taken to another ...
1
vote
5answers
200 views

How to get the TextField position in a TableCell on iPhone?

Here is the UI...(I know it is ugly...) The orange is a view, and the blue is the table, and the gray one is the table cell, lastly, the red is a textfield in a table cell. My question is simple, I ...
0
votes
2answers
182 views

get values from same textfield in custom cell

I have one custom cell in a table with one textfield (cell.guestName.text), users add more rows depending on how many guests they have. I am struggling with fetching the guest name entered in each ...
0
votes
2answers
235 views

Put a UITextField inside a UITableViewCell's AccessoryView

I am experimenting with putting a UITextField inside a UITableViewCell. Now I got two working methods. Using addSubview method: UITableViewCell *cell = [[UITableViewCell alloc] ...
0
votes
3answers
698 views

Fitting a UITextField inside a UITableViewCell Without hard-coding text field's frame?

Having a UITextField in a UITableViewCell I'm making a fill-out form (First name, Middle Init, Last Name) using table views and want to embed text fields in some of my cells. I see a lot of examples ...
0
votes
1answer
299 views

Input Accessory View Realization

Absolutely beginner obj-c question. I am totally frustrated last few days about to do my task, but it seems like I have a problem bigger than my level of knowledges now. Before posting this question I ...
0
votes
0answers
130 views

How to add a custom UITableViewCell contains a UITextField to last of a UITableView

In this issue, when click on the "New Item" button, the Keyboard appear, and the UITableView would scroll to the last row, and there would be a new UITableViewCell with a UITextField after the last ...
1
vote
1answer
579 views

How to get textFields in custom UITableView

Very beginner obj-c question. I have plain UITableView with two sections, but I am interested only in first section now. This section have four custom cells (inherited from standard UITableViewCell), ...
0
votes
1answer
567 views

How to hide keyboard when UITextField is inside a TableView Cell

What I got is a TableView which is using Prototype Cells and an array feeding the dataSource - depending on the datasource, I'm using a certain Table View Cell identifier to build the cells. (Please ...
1
vote
1answer
195 views

editing is disabled in UITextfield in a static TableView - iOS 6.0 only

I have two UITextFields inside a static TableView (in a Storyboard) for loggin in. The first time go to the tableView via a modal segue, the TextFields are editable as they should be. When I then go ...
0
votes
1answer
85 views

UITableViewCell has UITextField, cell can be removed but crashes when it is first responder

I have a custom UITableViewCell, which has a text field in it, the cells can be removed, then I got a problem when the table is in editing mode and the cell also got first responder for the text ...
0
votes
1answer
247 views

UITextField not working properly within UITableViewCell

I'm having an issues while integrating UITextfield as a subview in UITableViewCell. I have used the following code in my project to add UITextField as a subView within UITableViewCell - ...

1 2 3 4