A custom cell is a unique, personalized or subclassed version of some generic cell type.
Questions tagged [custom-cell]
759 questions
0
votes
1 answer
Observing custom cell
I am trying to add observer (KVO) to observe my custom cell. Once the cell is selected I should receive a notification of the event.
My code:
[colMain addObserver:self forKeyPath:@"colMain" options:0…

uml
- 1,171
- 4
- 16
- 28
0
votes
1 answer
Writing to a label when creating a custom cell Xcode
I keep running into a problem when I try to write to a label in a custom cell. So right now, I have a class with a table view called "AccountViewController" and I have a class with my custom cell "AccountViewCell. I can get my cell to correctly…

Sulaiman Majeed
- 501
- 2
- 7
- 21
0
votes
2 answers
Custom Cell Segement Event handler
I've a custom cell for my table view,
I want to assign value changed event for the segment ON/OFF. Ideally, the event sent a asynchronous request depending on the label value as a POST argument to a web service to update the value.
I thought…

anotherCoder
- 712
- 3
- 11
- 25
0
votes
1 answer
make stable Table Header View
i have 4 buttons in headerView, i just want them stable on the screen at top when we scroll the tableView, How to make it stable (constant at 1 place even we scroll table)

Ravindra Bagale
- 17,226
- 9
- 43
- 70
0
votes
2 answers
Iphone Application:-My Application Crash
I make one custom cell class like this.
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
/*imgview=[[UIImageView…
user1600593
0
votes
2 answers
My custom cell does not display
I have created a custom cell that contain a Label but when I added that in my Table View than it does not display, my view controller is not TableViewController I have seted Table View using IB and seted its delegate and datasource correctly.
I am…

David Gray
- 307
- 3
- 11
0
votes
4 answers
ios - Labels get duplicated when ViewController is called
I have a TableView with CoreData and Custom Cells which all works fine.
now when I select a cell to have its content edited and return from it, by just tapping the back button in a UINavigationController, I have something strange happen.
Please see…

jwknz
- 6,598
- 16
- 72
- 115
0
votes
1 answer
One call works but not the other (same) w AssetLibrary / UIImage
Got an UIIMagePickerController in my "newPlayerVC" that saves an thumbnail image (after I resized it down to 100x100 px) to the AssetLibrary without any problems.
Dirrectly after saving the image I put in another call to the AssetLibrary again to…

Mac
- 111
- 1
- 11
0
votes
1 answer
call method from custom cell in iphone application
i have one view controller
Name : FirstVC
i have table view in that view controller. in my table view i load a custom cell. in my custom cell there is 1 label and 1 button. i set label as well as button of custom cell from FirstVC. See bellow…

Bhavin_m
- 2,746
- 3
- 30
- 49
0
votes
4 answers
Android ListView target custom cell text box
I have a ListViewwhich has a custom cell in it with 2 buttons, a label and an editText. I've got it so that when I click the button for the custom cell it does a log saying at what position the button has been pressed. However I can't work out how I…

MissCoder87
- 2,669
- 10
- 47
- 82
0
votes
1 answer
Passing detail from a custom cell in a tableView to a detailView
newbie question. Yes, I've looked all over but not found a good explaination of what to do for this particular instance. I'm sure this is very simple but I'm having trouble. If you could spend 5 minutes looking at the code and helping my…

Alan
- 63
- 7
0
votes
1 answer
XCode 4.4 remote Image in a Custom Cell Table View
I'm new in Xcode Programming and I'm developing a small application but I have a problem.
I have a Table View with a Custom Cell, taking externally the data to populate the view (by JSon). I have a big slow navigation in list because in the method -…

Skiddolo
- 23
- 3
0
votes
1 answer
Push only the UITableView
Is there a way to just push the right UITableView into the left one without pushing the whole view?
I had an idea about just reloading the table with new data and another CustomCellIdentifier but I'm sure there is a better way of doing it.

Backslash
- 343
- 5
- 12
0
votes
2 answers
Monotouch UITableViewCell AddSubView
I'm attempting to create a table/grid like view which i can use for displaying large amounts of information.
The way I have attempted to achieve this is by creating a custom cell view. It's basically UINavigationController, which i know is incorrect…

Steven Yates
- 2,400
- 3
- 30
- 58
0
votes
3 answers
Memory leak when loading image to custom cell in UITableView
In my iPhone app, having a UITableView with custom cells. Which contains UILabels and UIImageViews. But I am getting memory leak when I assign the image to the image view. Here is the code. Leak is in the method cellForRowAtIndexPath: I have…

Mithuzz
- 1,091
- 14
- 43