A custom cell is a unique, personalized or subclassed version of some generic cell type. In Objective C, for example, one can subclass off a UITableViewCell object and create dynamic cells which have configurable labels and graphics and controls.

learn more… | top users | synonyms

1
vote
3answers
65 views

“no index path for table cell being reused” issue for custom cell

I am having a Tableview within that i have a custom cell and within that i have another tableview. In this cellForRowAtIndexPath method i am getting this error no index path for table cell being ...
0
votes
5answers
75 views

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 ...
0
votes
3answers
68 views

UITableView with Multiple Columns [duplicate]

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.
1
vote
2answers
38 views

How do I maintain and save custom cell textfield entry data when scrolling cells deque

Sadly I know what the issue is however I'm green and don't know the best way to go about handling it. I have read the apple documentation and all the related questions here and cant find or interpret ...
0
votes
1answer
46 views

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 ...
0
votes
1answer
30 views

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 ...
1
vote
0answers
54 views

Add buttons to some cells in datagridView

Is there any way on C# WinForms to add buttons only in some of the cells so that they (buttons) were part of the cells? And add the handler for this buttons. This need to that the values ​​for a ...
1
vote
1answer
53 views

An IBOutlet is not initiated

I'm trying to make a tableview with customized cells. I've created 2 files .m and .h that refer to my class CustomCell. Here is the code : #import <UIKit/UIKit.h> @interface CustomCell : ...
4
votes
4answers
81 views

objective-c accessing methods from custom cell

ok, this is maybe a newbie question but i need help with it.. I have a someview.m and in it a custom cell which is defined in customCell.h and .m So in someview.m i have - (UITableViewCell ...
0
votes
0answers
15 views

mouse tracking of a Custom Cell with text Image button for an NSTableview

here goes my dilemma : I want to be able to track the mouse event for a customized cell, with some background search, it came back to overriding the tracking methods of the cell in question: – ...
0
votes
1answer
129 views

IOS Custom Table Cell does not Automatically Resize Width for Orientation Change

Have a custom table cell with it's own .XIB and .h and .m. Nothing too fancy. When the device rotates, the cell width does not change. The tables cell for index path is called, but width is not ...
0
votes
0answers
54 views

Showing a checkmark accessory view move the table contents

I followed Apple's documentation on adding subview to the UITableViewcell here to add a 3rd label to the cell. The problem is when I show the standard checkmark accessory view on the right the whole ...
0
votes
1answer
191 views

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 ...
0
votes
1answer
62 views

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 ...
0
votes
1answer
32 views

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 = ...
1
vote
1answer
65 views

How to grayout all tableview cells except selected one

I have a table view with custom cells ,there are uibuttons on custom cell ,if i select button except that cell remaining all cells should be grayouted or disabled is it possible. // code in tableview ...
0
votes
2answers
74 views

Accessing cell attributes outside of cellForRowAtIndexPath

I have five fields setup on a Signup controller. Username, displayname, password, confirm password and email address. They are setup with the following: static NSString *CellIdentifier = @"Cell"; ...
1
vote
1answer
68 views

Change first responder in uitableview custom cell?

I'm having a tableview which uses custom cell for the cells. Each cell has four text fields. When I work in first text field and click next in keyboard I want to make the next text field in the same ...
1
vote
1answer
65 views

Several UITableView's with custom cells. Don't works scrolling

I have two UITableView with custom cells, and am faced with strange behavior. The tables are periodically updated with new records. I add 20 records to table#1,w ith table#2 still empty. All the ...
0
votes
0answers
30 views

UITableViewController with differnt custom cell

I want to create a UITableViewController but each cell should be a different custom cell for example the first cell will contain an image and the one bellow will contain the image details and the one ...
2
votes
3answers
172 views

How to get text from textView from custom cell iphone

I have a table view with custom cell.On my custom cell, I have a label and textView and I want to get data from textView to save in feedBack button. When I add txtView in my data array, I get custom ...
0
votes
0answers
51 views

Trouble in handling text selection in Custom Cell of NSTableView

I populate CustomCell based NSTableView in my main window. In my custom cell, there exists some images and texts like below: ┌─────────────────────────┐ │ ┌───┐ text01 │ │ │img│ ...
0
votes
2answers
127 views

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) ...
0
votes
1answer
28 views

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{ ...
1
vote
0answers
104 views

How can i implemented delete button in AQGridViewCell

i want to add button in my Customized AQGridViewCell with ImageView. when i Click Edit button its showing delete button on the ImageGridViewCell like below image.i added delete button in ...
0
votes
4answers
194 views

How to make a keyboard return on the done button [duplicate]

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 ...
0
votes
1answer
240 views

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 articles: ...
0
votes
0answers
33 views

UITableView rows not in order

I have a custom cell, which is loaded from a Nib. I have a variable called customCell and that's how I implement my custom cells: UITableViewCell *cell = [tableView ...
0
votes
1answer
107 views

Issue with UITextField values in custom cell while scrolling fast ios

I have a simple table with custom cells each containing a textfield. In cellForRowAtIndexPath: I create and initialize each cell depending on indexPath.row: case 0: { CellIdentifier = ...
0
votes
0answers
75 views

storyboard custom cell without reuse failing to create cell correctly

As a result of limited number of cells and due to other problems I am running into, I attempt to create my custom cells without dequeueReusableCellWithIdentifier. Instead I do cell = [[MyCell alloc] ...
0
votes
3answers
90 views

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 ...
0
votes
2answers
70 views

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 ...
0
votes
0answers
85 views

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 ...
0
votes
0answers
95 views

ios images disappearing ,imageview is created inside tableview?

UITableView is having multiple labels and a imageview. This view displays certain info. When this view is loaded, everything except image appears. ImageView does not initially shows image, instead, ...
-5
votes
5answers
107 views

Hide custom cell image

I am displaying a button in cutstom cell in UITableview. How do I hide that button when it is not needed. For example: I am display received images count on button. In case count will be zero, I need ...
0
votes
1answer
41 views

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 ...
0
votes
2answers
981 views

Reloading collection view

I am writing an app in Objective C. I have custom cell in collections view. Initially it loads data from SQLite Db and displays it in Collection view within each custom cell. And it displays cells on ...
0
votes
0answers
122 views

CollectionView window stays in black

I am writing iOS app. I have CollectionView window and inside it one customCell added by dragging and dropping in. When I run the app that part of CollectionView window is black. Collection reusable ...
1
vote
7answers
201 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 ...
3
votes
3answers
176 views

How to find the x , y position of button frame in a custom cell

I made a table view with a custom cell as follows. ![Custom cell][1] ![Out put table view][2] i need to set ratings using picker instead of slider in each cell I need to set picker position only ...
2
votes
2answers
326 views

How to create dependant dropndown/selection cell In GWT celltable 2.3?

I am using gwt2.3 celltable. In my celltable there will be multiple column out of that few columns are dependent. ex. Name and address columns are dependent Name and address columns contains my ...
0
votes
1answer
171 views

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 ...
0
votes
2answers
38 views

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 ...
0
votes
1answer
200 views

How to make cellForRowAtIndexPath be Called again after moving row?

After moving rows I changed the lineandPin number of the biz associated with the cell. If cellForRowAtIndexpath is called again then things will sort of work. This is my code - ...
0
votes
0answers
88 views

After mixing static cells and dynamic cells, custom cells in dynamic section don't work

Following these instructions: UITableView: Handle cell selection in a mixed cell table view static and dynamic cells I could mix static cells and dynamic cells. Everything works fine if for dynamic ...
2
votes
4answers
289 views

UITableView with custom cell scrolling slowly

I have three different cells. The Cell01, the Cell02 and the Cell03. The Cell01 must appear just one time, at the top of the tableview, and the rest, the 02 and 03 must interpolate (02, 03, 02, 03 ...
0
votes
1answer
87 views

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)
1
vote
1answer
195 views

UITableview dynamic number of columns

I am developing an iPad app, a part of which is a tableview with multiple columns. I am already using custom cells for displaying multiple columns(a label for each column), but my problem now is the ...
0
votes
2answers
222 views

Iphone Application:-My Application Crash

I make one custom cell class like this. - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier { self = [super initWithStyle:style ...
0
votes
0answers
58 views

Custom Cell for multiple table views in a story board

Scenario: - An Universal Application - Using Story Boards one for iPhone and another for iPad - Has 2 identical Table Views which will use the similar table view cell (one with search bar) - I have ...

1 2 3 4