0
votes
1answer
35 views

How to update the UITableViewDataSource when inserting new sections or deleting sections on UITableView?

I've a UITableViewDataSource which maintains sections of data items which will be presented by an UITableView instance. The table view is editable, allowing insertion and deletion of rows and ...
0
votes
1answer
6 views

Adding UILabel to UIImageView in CellForRow

I have a customCell in StoryBoard "CategoryCell", I have UIImageView with the cell which is also part of the cell also tied up in StoryBoard. The UIImageView is filled with a plain yellow color. I ...
0
votes
2answers
57 views

static table view works in iOS6 but not iOS5

I have searched for hours and hours and found many hints but not the solution. I have a very simple tableview with static cells. I am following the Apple documentation. I am not using storyboard, I ...
0
votes
2answers
31 views

Select the newly added dynamic row in UITableView

I am working with a MasterDetail View using SplitViewController in iPad, My Master View has a tableView where I add rows dynamically. So the newly added row sits at zero postion. So what I want to ...
1
vote
1answer
31 views

Updating cells with UIImageView to show currently selected item

I am using a sliding view controller which holds the main controller on top and a slide left menu controller. The controller on the left works as the menu like Facebook/Pintrest apps etc. It is a ...
0
votes
1answer
32 views

Setting up a menu in UITableView showing the current item

I am using a slide in menu style which loads a UITableView. - ECSlidingViewController I have about 7 cells in a table view setup as follows: static NSString *CellIdentifier = @"Cell"; ...
0
votes
1answer
83 views

Getting bad access while deleting cell and reloading table view

I am trying to build a table using custom UITableViewCell, but after deleting cell and when I try load the view, I get an EXC_BAD_ACCESS error,here i'm getting data from a dictionary and loading it ...
0
votes
1answer
29 views

Use my custom initialier to initialize my table cell (inherit UITableViewCell)

I have created my custom table cell class: @interface CommonCell : UITableViewCell{ ... } @end In the implementation file of it, I have created a custom initializer method: ...
0
votes
1answer
51 views

Background of View inside UITableView which is inside UITableViewCell

I have a UITableView inside UITableViewCell. The inner tableview is of size 5 with each cell contentview of different background color and is editable.I'm able to reorder the tableviewcells of inner ...
0
votes
2answers
60 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
3answers
46 views

TableViewCell image change when touched

I have my own TableViewCell class which inherit UITableViewCell. On my cell nib file, I have put a image in my TableViewCell. (The image does not fully occupy the whole cell area, there are spaces ...
2
votes
1answer
76 views

customize tableview background using tableView willDisplayCell: delegate method

I want to customize tableview background with my own images i am using the fallowing code to customize cell background view -(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell ...
0
votes
1answer
92 views

Adding Gradient Hides UILabel Text In UITableViewCell

I am trying to add gradient layer behind the UILabel's text which resides in a custom UITableViewCell. Problem is that gradient is hiding my label's text. I have already visited this link, but it is ...
1
vote
4answers
94 views

UIImageview in TableView

I have to display image in tableview,i got all images but it does not display. Here Array contains 3 images, these images came from server. when cell for row at indexpath call it display only 3rd ...
0
votes
2answers
176 views

uilabel from custom tableview cell is not displayed in tableviewcontroller

I have created a table view controller and custom cell .I have created a new tableviewCell file which has outlets for the labels in the custom cell . I have imported the tableviewcell class in ...
1
vote
1answer
154 views

Best route to fit a UITextField to UITableView cell

I am wondering what is the best way to make a UITextField fit a UITableView cell. I have used this method before: @implementation UITextField (custom) - (CGRect)textRectForBounds:(CGRect)bounds { ...
0
votes
1answer
127 views

cellForRowAtIndexPath not being called after table reload in didSelectRowAtIndexPath

I am facing a very strange issue. I am doing the following - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{ [invoiceTable reloadData]; // my table ...
0
votes
3answers
184 views

Adding buttons to a UITableView

I have setup a tableview that currently has one section, header, and two cells. For username and password, image shown below. I would like to add a button (IBOutlet), and a label/link below this ...
1
vote
1answer
74 views

Blink or highlight multiple UITableView cells

Current situation: I have implemented drag-and-drop functionality feature where users can drag items from one place and drop on any allowed row in UITableView. For example, users can drag item and ...
0
votes
2answers
339 views

How to toggle UITableView Cell selected status

I have a UITableView with a custom Cell, the cell contains a UIImageView and a UILabel. Now When I load my table first time, It loads with a same image on each cell and different labels, which it ...
0
votes
2answers
72 views

How do I access an array within cellForRowAtIndexPath without getting EXC_BAD_ACCESS

I have a bug that is driving me crazy. I have an NSArray called questions. The array is being populated by a JSON response. I'm trying to use it to populate the table view. in my header file I'm ...
0
votes
0answers
35 views

Custom table View Cell in some Location

I am building a Custom Grouped TableView and need to Display a Custom TableViewCell at indexPath.row=0 when section is 0 .I am able to show it but as soon I go to bottom of tableView all cells change ...
0
votes
1answer
105 views

Reload only a subView of a custom UITableViewCell

I am currently developing an app for iOS 5 and above in which a video is played inside a custom UITableViewCell using an instance of AVQueuePlayer. There are 'n' number of such custom cells playing ...
-1
votes
3answers
121 views

HoW to open url in anotherview when user click on row of UITableview? [closed]

I want to open url in another view when user select row.
0
votes
2answers
103 views

Custom separator image used in UITableView disappears when scrolling the UITableView

I am using a simple UITableView and using separator as a image. When table is loaded initially it looks fine but when user scrolls up and leaves, the separator image disappears. Again when user ...
1
vote
3answers
164 views

Accessory View background disappears when selecting a table cell

I'm using a text label with a background as my cell.accessoryView. When the Table gets selected, my accessory view background (label.backgroundColor) disappears. I'm able to restore the label's text ...
0
votes
2answers
76 views

Button in table view not responding with its cell number

I have one table view in each cell two button as edit and cancel. when i click on edit button at same time in same cell number, cancel button image should chacnge. for example. When user select seond ...
0
votes
1answer
123 views

Table View Cell Button Not Responding with it index position

I have Custom Table View Cell In That I Have Two UIButton and One Text Field Named As edit and cancel and one textField. When I Click on edit at same time TextFeild Interaction is Enabled And Cancel ...
0
votes
0answers
33 views

Cell is never nil, therefore I can't set the Cell Style

I have the following piece of code: DataCenterTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier forIndexPath:indexPath]; if(cell == nil) { cell = ...
4
votes
3answers
167 views

how to add 5 different custom cells in tableView

I want to show different data from web in my tableview but I am not getting how to show them in separate cells in one section of a table can any one help me to show in one cell ...
-1
votes
1answer
46 views

ios - can not figure out why list of items displays value of the first item in first and last spots when adding new item

I have a list of strings that I fetch from a remote database, and they display fine. Then when I add a string, that new string is added to the database fine, but when it comes time to display it on ...
0
votes
1answer
91 views

Dealloc Method in Custom Table View Cell

I had created a custom TableViewCell for a TableView, But the app crashes if there is a dealloc method(in Custom Cell Class). Please see the below code used for table cell class : #import ...
0
votes
1answer
125 views

exception when trying to get row size in a UITableView

I have this block of code which I use to place text in a UITableView cell. And it gives me an error. -(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath { ...
0
votes
1answer
47 views

CustomController class as CustomCell in SensibleTableView?

I currently use the Sensible TableView Framework to create a search filter mask for a new app. All works fine, but the latest Screendesign offers new problems. It's now required to select a range ...
0
votes
0answers
44 views

How do I refresh table section after deleting UITableViewCells in a static grouped UITableView?

Here's what I'm running into. I have a UITableView that I've set up using storyboards, so the table cells are both static and grouped. There are multiple sections in the table. I want to hide the ...
4
votes
7answers
745 views

UITableViewCell is not clickable

I have a custom UITableViewCell with lot of buttons, textfields, labels and a view. I hide and show them where they are required on each indexpath. But for some reason/s rows are not clickable! I ...
0
votes
2answers
89 views

Sending custom cell through segue

I currently have two UITableViewControllers, one with the prototype of the custom cell, and the other one not. Since both of them are connected through a push segue from the first to the second. I ...
0
votes
1answer
105 views

iOS - Laggy tableview when changing background view in cells

I just want to say first that I've been searching for this problem, but haven't find anything similar to my problem. What I want to do, is to change the background of each cell with a image. I have ...
1
vote
1answer
406 views

UIButton in UITableViewCell not responding in iOS 5x but responding in iOS 6

I have a button I'm adding in a UITableViewCell programmatically and it is behaving very strangely. In iOS 6 it works exactly as expected. In iOS 5x it only responds to touch-down events and not ...
1
vote
2answers
456 views

Dynamic height for a UITableViewCell with a dynamic UILabel

I have a UITableViewController that displays a custom UITableViewCell (inherited from UITableViewCell). That same UITableViewCell has a UILabel that can have text of variable length. The challenge I ...
1
vote
1answer
128 views

UITableViewController with 2 cell per row

I wanted to create a custom UITableViewCell with the following design. I wanted to show two pictures per row, an each picture has a tittle and a short description. I dont want to have the two pictures ...
0
votes
1answer
287 views

Creating complex UITableView with multiple different custom cells

I am creating a side menu in a table view that has custom UITableViewCell's. I have created a reusable cell which is used in the following: - (UITableViewCell *)tableView:(UITableView *)tableView ...
0
votes
3answers
172 views

Custom code for UITableViewCell

I would like to know where to enter custom code to change the value of a Label property for a UITableViewCell. I am not sure how this is loaded, as I have put an NSLog in the ViewDidLoad and ...
1
vote
2answers
92 views

Error:Incompatible Pointer (data not passing to another viewcontroller) [duplicate]

i want to pass a data to anotherViewController from TableView.But i don't know how to pass the data.here is my code. -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath ...
0
votes
1answer
82 views

UITableViewCell strange behavior when on select changing an image inside

I have a problem while using a custom extended UITableViewCell with a nib file for a UITableView in my iPad application. This cell have a behavior when selecting it to change a checkmark image from ...
0
votes
0answers
59 views

Unable to collapse UITableView

I am working on a mail app where the message view has a label named "Details" which is supposed to expand and collapse the "to:" and "cc:" fields. What i've done is that i've taken each of these ...
2
votes
2answers
588 views

Can I use a single prototype cell in multiple tableViews?

I am having two different tableviews in two different controller. But the cells, that I need to display in them, look identical. I have created a prototype cell in one tableView and subclassed ...
0
votes
1answer
26 views

Is it possible to use static UITableViewCell and add sections on them?

Is it possible to use static UITableViewCell and add sections on them? It would be great if I could separate these cells into Twitter, Facebook and Other for example.
0
votes
3answers
269 views

UISegmentedControl in UITableViewCell changing segment index order when reused through dequeueReusableCellWithIdentifier

I've got a UITableView with custom UITableCells. Inside those UITableCells are UISegmentedControls. I'm trying to change the tint color of just the first UISegment. This works correctly until the ...
0
votes
3answers
379 views

How to add a content view on UITAbleViewCell when a row is selected?

I'm trying to add a button when a row is selected in UITableView and also remove it when row is tapped second time, i don't want custom UITableViewCell. Any suggestion or sample code will be ...

1 2 3 4 5 6