A custom cell is a unique, personalized or subclassed version of some generic cell type.
Questions tagged [custom-cell]
759 questions
0
votes
2 answers
Maintain values from UITextViews in Custom Cell
I have a table populated with a mutable array. The cells are custom, with an UITextView, delegated on the customcellclass, which value I'd like to keep. It gets erased after every table reloadData.
Any idea about how to keep it? The ideas I had, and…

g10k
- 53
- 5
0
votes
1 answer
How to make custom cell width adjustable as per tableview frame
I am using custom cell containing labels and images in tableview.On Button action am shrinking the tableview frame but the custom cell width isn't shrinking accordingly.
Thanks in advance.

rehan
- 141
- 1
- 2
- 9
0
votes
1 answer
display text in custom cell
I have a custom cell in UITableView.I have hooked it to a class(DocumentCell)in Identity inspector.The DocumentCell.h class looks like this:
@interface DocumentCell : UITableViewCell
@property(nonatomic,retain) IBOutlet UILabel…

user1550951
- 369
- 2
- 9
- 26
0
votes
5 answers
iPhone - Asynchronous image only displays on scroll
I've been banging my head against the wall on this one and searched far and wide for a solution to no avail:
I have a large array of data pulled from the web and I'm using Loren Brichter's ABTableViewCell to make it run smoothly by drawing…
user737753
0
votes
1 answer
Load Mime Type Image in UITableView
I was wondering how a generic music image for a music file in a UITableView on iOS and so on such as a generic picture image for image files. Here is a picture of what i am trying to do…
user1556495
0
votes
1 answer
How to avoid extra calling of -textFieldDidEndEditing in some cases in objective c?
I have a tableview with customcells with textfields in it. I am facing a peculiar problem now:
When I tap on first row textfield, -beginEditing gets called.
Now I change the value and tap on second row textfield. So, the -didEndEditing of first row…

utsabiem
- 920
- 4
- 10
- 21
0
votes
4 answers
Iphone : Use table custom cell
i'm using custom cell i learned in (This site). It's work in my old app but in this app i dont know why it's haven't work, when i run the above code he stuck with green error in line (NSArray *topLevelObjects = [[NSBundle mainBundle]…

user1526898
- 27
- 6
0
votes
1 answer
How to increase the height of custom cell in UITableView
I have a tableview that fill with custom cells,, Now I want to increase the width of the cell,I increased the cell height of UITableview. But the problem is still same. Any one know how to increase the height of custom cell in UITableView.
Thanks,

iDia
- 1,397
- 8
- 25
- 44
0
votes
1 answer
Why doesn't my UISearchDisplayController use my custom tableViewCell?
I have an iPad app using a split-view controller. Within the master view, I have a list of items displayed using a custom table cell defined in the storyboard.
The cells display as expected complete with the dark background I selected in Xcode.
I…

Thompsonian
- 407
- 5
- 23
0
votes
1 answer
Detect action of segmented control in a custom cell
I got a simple question :
In a tableView, i'm displaying a list of customCells. These cells contain labels, SegmentedControllers....
The labels, segmentedController and other cells attributes are declared in a specific class.
How could I, in the…

tvincent
- 73
- 3
- 11
0
votes
0 answers
Adding twitter search to a custom cell in tableview
I have a TWRequest that has created a dictionary output called dict. I would like to output the results of this into a custom cell in a tableView. The trick bit is that each individual tweet is then split (as its 'text' will be split into sections…

Alan
- 63
- 7
0
votes
2 answers
iphone pass navigation controller as parameter
My application has a structure like the following:
One UIView with 5 buttons (this is a navigation controller ). When each button is pressed I push a UItableView in the navigation controller. My problem now is that , I have created a couple of…

Panos
- 7,227
- 13
- 60
- 95
0
votes
3 answers
UITableView detailTextLabel not working with custom cell
I've created a custom cell which currently is showing an image and text, but not the detail text.
Even with "cell.detailTextLabel.text", it still won't show. Would anybody have an idea what's wrong?
I've tried changing UITableViewCellStyleSubtitle…

mhorgan
- 886
- 2
- 11
- 32
0
votes
1 answer
Custom UITableViewCell + resignFirstResponder
I have a UITableView with two Custom Cells. One of the Custom Cells contains a UITextField.
I'm having problems with hiding the keyboard when the return button is pressed.
- (IBAction)textFieldDoneEditing:(id)sender {
[sender…

Backslash
- 343
- 5
- 12
0
votes
1 answer
iOS Redesigning UITableView through Macros
I custom draw my TableView Cells by defining a macro #define DRAW_SET 1
Somewhere throughout the life cycle of the app I want to change the appearance of the cells, so I implemented an IBAction method that then #undef DRAW_SET the macro and defines…

r1d3h4rd
- 141
- 1
- 6