Questions tagged [custom-cell]

A custom cell is a unique, personalized or subclassed version of some generic cell type.

759 questions
0
votes
2 answers

UITableView receives custom UITableViewCell but nothing is shown

I'm testing UITableView with a custom TableViewCell. The custom cell is designed in a .xib file and has its own class called cell, which is a subclass of UITableViewCell: Cell.m #import "Cell.h" @implementation Cell - (void)awakeFromNib { //…
Björn
  • 608
  • 2
  • 7
  • 19
0
votes
1 answer

Multiple Nib files in UITableView

I am currently retrieving objects from Parse.com and saving them to CoreData. I am then next using NSFetchedResultsController to retrieve objects from CoreData. These objects will then be used to create a table view. Everything i retrieve from…
Fernando
  • 241
  • 3
  • 10
0
votes
2 answers

Custom UITableViewCells Reloading Issue

Whenever I delete a cell the cell that was previously in its place imageViews don't disappear. For example a cell uses all three image views, and was deleted and replaced by a cell that one used one of the image views. The two images views with the…
Nicholas Mata
  • 796
  • 1
  • 9
  • 19
0
votes
2 answers

Saving a dynamic tableview's textfields

I keep posting about this same issue but I can't seem to get the answer and I've easily spent 30+ hours trying to figure it out. I will keep it as simple as possible. I have a dynamic tableview that adds custom cells when the "+" button is pressed.…
0
votes
1 answer

Custom UITableViewCells overwrites one another when scrolling

how can i make each cell unique when i add a label to the dynamic cells because when it is scrolled they overwrite each other` ` -(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { …
Aragunz
  • 511
  • 5
  • 18
0
votes
1 answer

data is not displayed in the table at MVC array at storyboard and custom cell

Using Xcode 5 for iPhone. I try to display data in a tableview from an array in MVC (not local array) - but the data is not displayed in the table and appears empty grid. I'm using storyboard (not nib), and custom cell (not…
ici
  • 1
  • 3
0
votes
0 answers

uiimageview in custom cell not appearing in custom cell

I've got a custom cell with a UILabel and UIImageView which is only partly working. The storyboard is connected to each of the outlets and all that... no problems there. In the view controller the label is being populated with the text fine... but…
Drew
  • 1,422
  • 1
  • 18
  • 29
0
votes
2 answers

Two different UITableViewCell in UITableView

I want to create one TableView that has 2 section rows. this table has 2 section (first section has 1 cell and second section has 3 cell) notice:cell of first section different with cells of second section. this is my code but don't working!!! -…
MmD
  • 2,044
  • 5
  • 22
  • 41
0
votes
1 answer

JavaFX Listview bind button to the index of the cell

Im trying to build a custom view with JavaFX that allows 2 buttons "Edit User" and "View User" to be placed in the cell. I have my adapter built but I am having trouble assigning the index to the button when the cell is created, this is a problem as…
Halfpint
  • 3,967
  • 9
  • 50
  • 92
0
votes
2 answers

Handle UIButton click in a custom cell that is loaded in sections (where number of section is not defined. ie: taken dynamically)

I am having a view controller where i want to load sections & the count for number of section is taken dynamically, ie: retrieved from database. Now, in each section am having 8 rows where row 2 to 8 are loaded with 5 buttons each. I want that…
MixCoded
  • 494
  • 4
  • 15
0
votes
1 answer

Table View when scrolling, custom cell is restoring and selected options are reassigned

I have an requirement to display list of questions and options, so that the user can select his own option for every question and be able to submit. When submitting answers they should be validated and the result will be displayed to the user. I am…
0
votes
1 answer

How can I program buttons in custom cells according to the selected cell accordingly? ios

So I have a table in notificationsViewController with customs cells. this tableView loads data from jsonSerialization to display data, specifically customerID and checkinID the custom cell is named checkInCell.m, .xib, and .h. In this custom cell,…
user3178926
  • 339
  • 1
  • 5
  • 15
0
votes
0 answers

UITextView in UITablecell fill TextView text on custom cell

I am working with Custom UITableCell and dynamic UITextView in my application. I have one issue regarding ios7 which i explain as follows: i have created one view on UITable Cell Custom Button click like as follows. this view contains UITextView to…
Hrushikesh Betai
  • 2,227
  • 5
  • 33
  • 63
0
votes
5 answers

Remove and add Subview to Custom UITableViewCell

i have a Custom Cell with different Subviews on it. One of them, a UIImageView, is optional. so there can be the case that no Image is needed in the cell. My Problem is that i dont know how i can remove the Image for cells which dont need it, and…
Davis
  • 1,253
  • 4
  • 17
  • 38
0
votes
1 answer

how to get rid of the unwanted top cells of table view

I am using custom cell type UITableview. The custom cell just has two lines of text one below other - key value pair. The data creating the table is an array sorted based on key. I need to check whether the top some of the top keys are to be be a…
silverkid
  • 9,291
  • 22
  • 66
  • 92