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
How to show only selected fields in UITableViewCell
I have a custom UITableViewCell and cell have 5 label like
Name : ram
DOB : 10/12/2012
Email:ram@gmail.com
Phone :1234567890
Address : Bangalore
In the ViewController I'm showing one popup so that user can select what field he want to see in the…

Rajesh
- 13
- 5
0
votes
0 answers
UILabel in Custom Cell doesn't wrap
I want to show a string with more words in a label.
Here is my code in the viewDidLoad:
startLabel.lineBreakMode = NSLineBreakByWordWrapping;
startLabel.numberOfLines = 0;
startLabel.text = string;
I also connected the label to the interface…

user3298017
- 31
- 1
- 6
0
votes
2 answers
Static TableView Crashes When I Add Images
So I'm working on something for a friend of mine, and I'm having some issues. I have an array of text and images for each weapon category.The application was working perfectly but then I added images and now It just crashes. Take a look and if you…

Jackintosh7
- 44
- 6
0
votes
1 answer
Custom tableview with user input
I have a tableview with a custom cell. Then labels that the user inputs data. What would be the best way to make the first cell of the table record the data the user inputed then the next row record new data that is inputed.
So
User inputs…

Nick Monaco
- 3
- 2
0
votes
1 answer
How to show full text of a labelview in cell, when height is changed
I have a tableview with a customized cell in it, in my cell, I have one label and one image, text in label is long, so I just show first 2 lines and then show 3dots "..." using linebreaks, and then when user tap cell, it will expand to show full…

Reza_Rg
- 3,345
- 7
- 32
- 48
0
votes
1 answer
PFQueryTableViewController with custom cells crash while launching
I do not understand to this but always when I try to launch my app, I get error.
Can someone help me? I think it will be maybe something in TableeViewController.m. But i am not sure.
Thanks
TableCell.h
#import < Parse/Parse.h >
@interface…

Milan1111
- 185
- 3
- 13
0
votes
2 answers
Get indexPath on UITableView's editing mode
I have a UITableView with CustomCell. Whenever UITableView is in editing mode i have following code in CustomCell.
- (void)willTransitionToState:(UITableViewCellStateMask)state{
[super willTransitionToState:state];
if (state ==…

DipakSonara
- 2,598
- 3
- 29
- 34
0
votes
2 answers
Add a push segue to a button inside of a custom cell of a tableview
I have a project that displays a feed of statuses similar to other social networks. Each feed item has several button that do different things. 1 of the buttons opens a new viewcontroller that displays the comments that have been posted on a…

ChuckKelly
- 1,742
- 5
- 25
- 54
0
votes
1 answer
Making a Grid cell editable based on ModelData in GXT 3.0.1
I want to make a Grid Cell editable based on the data in that cell.
The cell accepts a String. so, i am adding a Text editor as follow:
final GridInlineEditing editableGrid = new GridInlineEditing(grid);
int columnCount =…

Vivek Vardhan
- 1,118
- 3
- 21
- 44
0
votes
0 answers
How replace a custom cell with another custom cell in NSTableView
I am working on a Mac OS X application. I currently have an NSTableview with 3 columns. The second column in the NSTableView is populated with a CustomCell say CustomCell1.
During run time, I want to replace the content of second column with another…

Keerthiraj
- 265
- 2
- 4
- 10
0
votes
2 answers
Implementing a Custom Table View Cell (with labels and a custom size) using NSFetchedResultsController
I am working on a simple app which has the following premise:
TableViewController with a plus button - the user presses and is presented modally with text fields to enter to represent the name, title, etc. When they press save, the view controller…

amitsbajaj
- 1,304
- 1
- 24
- 59
0
votes
1 answer
Adding a UICollectionView overlay to AVCam
So I Have an AVCamViewController that I am using to take pictures. The background is a live image feed and Overlaid on top is a button to take a picture and a UIImageView to display the picture taken. These both work. I want to have a side scrolling…

Eric Schlanger
- 21
- 4
0
votes
1 answer
UILabel with iOS Storyboard: I can set the text explicitly, but introduce stringWithFormat: can't set text
This is a weird one. I've got a label on my storyboard in a custom prototype cell whose tag is 102. As the subject title suggests, I can set the text of the label in various ways and it appears on the device as expected. Here are the methods I've…

baptzmoffire
- 589
- 2
- 4
- 20
0
votes
1 answer
Custom tableview with different cell
I am new to iOS. I have a table view where i want to load different custom cells.
Here is my code from tableViewCellForRowAtIndexPath:
if (self.mainTableView .tag==SEARCH)
{
static NSString *cellId=@"Cella";
CustomCell *cell =…

just ME
- 1,817
- 6
- 32
- 53
0
votes
1 answer
Why are my custom cells blank ?
Thanks for the help in advance-
I have a UITableView with a custom cell. If I insert a break point, and log the values for the cell it is correct, but when I execute the code the table view is always blank (but does have the right number of cells)
…

Nathan
- 1,609
- 4
- 25
- 42