A custom cell is a unique, personalized or subclassed version of some generic cell type.
Questions tagged [custom-cell]
759 questions
0
votes
5 answers
Hide UIButton in Custom UITableViewCell
In my tableview, I have several different custom cells. In one of them, it has a button. This button brings up another view controller. However, It is not needed until the tableview has fully loaded. In cellForRowAtIndexPath I set up all my…

Douglas
- 2,524
- 3
- 29
- 44
0
votes
3 answers
UITableView with Multiple Columns
Is it possible to create multiple columns in UITableView, as my requirement demand me to do this, If it is possible how i can i resolve this issue.
Thanks in advance.

username0013
- 79
- 1
- 8
0
votes
2 answers
iPhone UITableViewCell slow performance
I just wrote a small application that read from a site feed and display in UITableViewCell. I am using custom view cell and my UITableView is screwed in scrolling like it is not very smooth in scrolling upside down. Any idea? Here's the code for my…

Min Soe
- 1,214
- 1
- 14
- 25
0
votes
1 answer
cell didn't return nil but it is not displayed
Apologies if this comes across as a beginner's question. I'm trying to populate a UITableView with sections and custom cell formatting.
i've debug this code and the label on each tag returns the correct value:
-(UITableViewCell…

Yuka Fujisaku
- 21
- 1
- 8
0
votes
1 answer
How can I change the type of cell in uitableview with a button
I have two UIButtons that act like a segmented control. I also have two custom UITableView cells, and I the user to be able to toggle between the two types of cells with the buttons. Does anyone know how I can do this? Here is some code:
-…

Chandler De Angelis
- 2,646
- 6
- 32
- 45
0
votes
1 answer
IOS Tableview custom cell with dynamic label height
I have trying to figure out this for quite some time :
I have a custom cell in tableview which has two labels one below other. The top label can be of one line or two line max. The bottom label is restricted to just one line.
The top label will…

user1060418
- 215
- 1
- 3
- 15
0
votes
1 answer
Issues with cell reuse in a UITableView custom cell
In my my app I have used a custom cell. Within it I have many fields like button, image, textfield, label.
Among those I need to display the indexpath.section and indexpath.row values
I tried with
cell.sectionLabel.text = [NSString…

iOS dev
- 2,254
- 6
- 33
- 56
0
votes
1 answer
Custom Cell re-use in iOS 5.1
I'm having a hard time understanding the following block of code inside cellForRowAtIndexPath:
NSString *uniqueIdentifier = @"SliderCellWithComments";
SliderCellWithComment *cell = nil;
cell = (SliderCellWithComment*) [tableView…

Matthys Du Toit
- 2,168
- 3
- 21
- 34
0
votes
2 answers
UISearchBar searching in custom cell which contains UIImageView and UILabel
I have a custom cell which contains UILabel and UIImageView.
Retrieving data with JSON.
My UISearchBar working perfectly when searching text but my UIImageView's index is not changing.
-(void) searchBar:(UISearchBar *)searchBar…

Gokhan Gultekin
- 291
- 5
- 15
0
votes
1 answer
Two TableViews with two CUSTOM cells in ONE view
I have written some code to display two tableviews' data with two custom cells in one view:
(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UIImage *image;
static NSString…

androniennn
- 3,117
- 11
- 50
- 107
0
votes
4 answers
How to make a keyboard return on the done button
I have created a custom cell, containing a text field. I would like the keyboard to disappear when the user presses the done button (as seen in the screen shot below).
The custom cell is located in "AccountViewCell". In my code, I call and display…

Sulaiman Majeed
- 501
- 2
- 7
- 21
0
votes
1 answer
Create Custom Table cell with monodevelop and Xcode 4
I want to create a custom table cell for my iPhone application by Monodevelop and xcode 4 based on monotouch. I found this…

Husein Behboudi Rad
- 5,434
- 11
- 57
- 115
0
votes
3 answers
How to move the focussed text field to the middle of the view after keyboard popups
In my iPad im creating SplitView application. I have a UITableVewtable with multiple rows, each row/cell having three UITextField
When i tap on UITextField some fields are hide by the keyboard.
So im using TPKeyboardAvoidingScrollView framework but…

user1811427
- 359
- 2
- 6
- 17
0
votes
2 answers
Multiple rows insert auto insert in edit mode with UITextFields, similar to contacts phone/email
I am trying to recreate functionality of similar to adding/editing phone numbers or emails in the contact editing on the iPhone.
I always have an empty row with placeholder text available. In edit mode (push of a button on toolbar) I un-hide…

kos
- 1,357
- 9
- 21
0
votes
1 answer
How can i have Grid with cell which can act as container in GXT 3?
How can i have Grid with cell which can act as container in GXT 3 so that they can hold any object from other container to any widget.
I'm working on small app which has row expander grid. GXT demo has good example of it.
From class hierarchy it was…

Saurabh
- 445
- 6
- 19