-5
votes
0answers
38 views

I'm using a uitableview in my application to display buttons. Is this the correct way? [closed]

@implementation Level1ViewController @synthesize tableView,sections,filteredArray,quiz,level,dispScore,levelIndex1,filteredArray1; - (id)initWithNibName:(NSString *)nibNameOrNil ...
0
votes
1answer
61 views

Two UITableViewCell have the same indexPath?

I have a problem like this: I have a table view. when i click on a cell (or row), the cell will add 2 more buttons and re-size. This function it work fine! The problem is when i click first row, ...
0
votes
1answer
12 views

Determine UIWebView height based on dynamic local content, within a variable height TableViewCell

Okay, so I know this question has been asked and asked. There are many good suggestions, but I cannot get this to work as expected. I am trying to create a tableview cell that can dynamically set its ...
-1
votes
2answers
35 views

Static UITableViewCell returns nil on CellForRowAtIndexPath, but only for certain sections

I have defined a table view controller using static cells in a Storyboard scene. The table view itself contains six sections, each of which contains one or two cells. I write data to the cells from ...
0
votes
2answers
48 views

Custom UITableViewCell setup everything in init* or use properties

I'm wondering what is the best approach/design when using custom UITableViewCells. One way I'm doing it is having a init that takes all parameters necessary to setup the UITableViewCell. Like ...
0
votes
1answer
60 views

UITableView Delete Control and Delete Button not synced

I have seen a very strange behavior of my table view: I have enabled the UITableViewEditingStyleDelete, which shows in the editing mode at the left side of the tableView a red "-" control. If I tap on ...
0
votes
1answer
42 views

Setting three sided border for UITableView - IOS

For my design specifications, my table view should only have three borders on top, left, and right. I have added it using the following code.... CGSize mainViewSize = menu_table.bounds.size; CGFloat ...
0
votes
1answer
37 views

UISwipeGestureRecognizer on view - If a touch is inside a UITableViewCell how to pass it to the cell?

I added a UISwipeGestureRecognizer to my view which changes the content of the view depending on the direction the user swipes(left or right). If a user swipes in a UITableViewCell though, the touch ...
0
votes
1answer
58 views

NSLayoutConstraint - dynamic height of a superview

I have three views inside a custom UITableViewCell: self.username, self.postText, self.containerView where self.containerView is the superview for the two others. I want it to be layed out like this: ...
0
votes
1answer
26 views

Two uitable into one uiview

So this is related to this question I asked not too long ago and I'm trying to figure out if the solution I came up with is feasible, I would try it but I'm not really sure how to start Load a ...
0
votes
1answer
51 views

reloading a uitableview starts at the 2nd row (or not at the first row)

Uitableview problem again. Whenever I reload my data, the tableview would reload but it seems like the data will not start at the first row. Please refer to the image below. I tried the following ...
2
votes
2answers
49 views

How can I hide the three-line 'move' symbol on the right of a UITableViewCell in edit mode?

I have a UITableView with edit mode enabled in my -viewDidLoad method. My problem is that I don't need the three-line 'move' symbol on the right of each cell. [tableview setEditing:YES]; ...
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
4answers
70 views

How to hide empty UITableViewCells showing in UITableView with plain style - IOS?

UItableView is showing with empty rows like below... how to hide it without changing the tableview style. Do I need to resize the table View, if so how can I know the height exactly to set.
0
votes
2answers
82 views

UITableView: Show selected cell background only when in edit mode

When my tableView is not in edit mode, I don't want a user to be able to touch the cells and have them highlight. But, because I have set allowsSelectionDuringEditing to YES, users can select cells ...
0
votes
0answers
44 views

Updating UITableViewCell subclass layout

If I have a UITableViewCellSubclass that can change layout depending if it's TypeA or TypeB. Should I have an init that is [UITableViewCellSubclass initWithType:type] and whenever the type changes I ...
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 ...
0
votes
1answer
56 views

UITableViewCell drop shadow not drawing for some cells

I have a custom tableview cell subclass which draws a drop shadow... When I scroll down, some of the cells do not have their shadows drawn... This also happens when I scroll back up. I have ...
0
votes
3answers
64 views

UITableViewCell BackgroundImage for ALL Cells

I'm setting all of the UITableViewCell's background image to the same pattern in the below code: - (void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell ...
0
votes
1answer
35 views

UITableViewCellStyleValue1 Error

So I'm making a app And i keep getting a error at this spot cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:[NSString stringWithFormat:@"Cell ...
0
votes
2answers
116 views

iOS cannot set UITextField text property in UITableViewCell

I have a UITableView of 'people' for my iOS app. I have created an 'add' screen to add new people to my persistent store, which works perfectly. This add view uses a form created with a UITableView ...
0
votes
1answer
123 views

UITableViewCell frame.size.width is the same for ipad and iphone?

Trying to place a UILabel containing the date in the lower right hand corner of a cell whether it's on an iPhone or iPad. Here's what I currently have, what do I need to do to get the actual cell ...
-1
votes
3answers
54 views

UITableViewCell Reuse

I have a UITableView that is reusing cells. Some of the cells in my table are a slightly different hight than others. When reusing the cell the table view seems to add the cell at the height it used ...
0
votes
2answers
51 views

UITableViewCell reloading itself after being scrolled

I am trying to make a UITableView. However my table fault is , when it is scrolled (When a cell is hides and then shows itself again) it resets the tabs and load the images from server again. How can ...
1
vote
2answers
105 views

Moving cells from one table to another in iOS

I am trying to create an application with multiple table views that uses and implements Core Data. I would like the user to be able to select cells in one table and move them to another (like in ...
0
votes
4answers
80 views

How can I the identify the UITableViewCell in code?

If I have a table view with different types of cells each with its unique identifier, can I find out which reuse identifier the indexPath relates to before I dequeue it in: - (UITableViewCell ...
-5
votes
1answer
32 views

exception : Terminating app due to uncaught exception [closed]

Terminating app due to uncaught exception NSInternalInconsistencyException, reason: UITableView dataSource must return a cell from tableView:cellForRowAtIndexPath:
3
votes
1answer
299 views

Why does auto layout in table view cells cause the table's content size to be incorrectly changed?

I'm using Xcode 4.6.1 and I have an iOS 6.1 app. It has a table view that drills down into another table view. The second table view uses custom cells to display its data. However, there is a problem ...
2
votes
1answer
41 views

Dismiss DetailController when UITabBar tab is changed?

I am working on an application where I have a UINavigationController embedded inside a UITabBarController. The UINavigationController has a UITableView that transitions to a DetailController when a ...
0
votes
3answers
47 views

How to get accessoryType for UItableViewCell?

Please check the below code.. - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath { // I may use this object to maintain check state. ab_user_info *obj ...
0
votes
1answer
40 views

ipad add tableview (only a part) to viewcontroller with storyboard

So I'm trying to add a UITableView on the lower half of my ipad app which will be used to display a search result. This is how I did it. I added a UIView I added a UItableView onto the UIView I ...
0
votes
5answers
184 views

UITableViewCell background image setting

I try to add a background image to my UITableViewCell. This is the code i am using: - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { ...
0
votes
2answers
865 views

custom tableviewCells for UITableView created programatically in storyboard [closed]

In my app I am using storyboard. But I created a UITableView programmatically instead of dragging from Object Library. And now I want to customize the cells of that programmatically created ...
0
votes
1answer
50 views

How to create a table cell layout like this?

All I like to do is a to create a UITableViewCell with a layout having two elements only like this: "Text that can have a flexible length with mutliple lines..." "one fix line directly follwing the ...
0
votes
0answers
38 views

how to hide number 0 indexAtPosition?

My code int nrUser = [indexPath indexAtPosition: [indexPath length] -1]; here i get numbers 0, 1, 2, 3, 4.... but i have to start with nr 1. how can if fix this?
0
votes
1answer
85 views

UITextfield interferes with swipe gestures

I've implemented this custom control in my project: Github page this control adds a Mailbox like swipe to delete/complete feature which I would like to use. The only problem I've encountered when ...
1
vote
1answer
49 views

Populating DetailController from UITableViewCell via segue

I am populating cells in a UITableView from CoreData and I have a question about how best to transfer the data I need to my DetailController (i.e. the viewController that shows when the cell is ...
1
vote
5answers
390 views

how to use UItableViewCell reuseIdentifier

I want to use UITableviewCell reuse,I have a custom UITableViewCell and using ARC,my UITableViewCell is different . my code is: - (UITableViewCell *)tableView:(UITableView *)tableView ...
0
votes
3answers
132 views

Tableview with empty cells

What I Want: Display some list of data inside a table view. The data is stored inside a single array by creating different objects .So for each object ,Size of the array varies. So my problem is ...
0
votes
1answer
72 views

Added UIImageView to UITableViewCell outside cell's bounds

I'm adding an UIImageView to my custom UITableViewCell. This image is then displayed outside the bounds of the cell. I've also added a UITapGestureRecognizer to the image so that when I tap on the ...
1
vote
1answer
66 views

How to add custom code when UITableViewCell becomes invisible when scrolled off screen?

This question is very similar to this one, but there is no answer there, I cannot comment or do anything in that question and have a little different situation. I have custom tableViewCell that has ...
0
votes
3answers
119 views

Changing custom cell's height dynamically not working

I want to set the height of a cell dynamically based on a label's height. I created the cell: - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { ...
0
votes
2answers
60 views

How to determine if a certain text is being completely shown in UITableViewCell?

Is it possible to know if a certain text is being completely shown in the textLabel of a UITableViewCell? I mean: is it possible to find out if the ellipsis (dot dot dot) had to be shown because the ...
0
votes
0answers
81 views

Issue with disabling UITableView custom cell from indenting while in editing mode

I disabled the cell indentation while in edit mode. In the custom cell's layoutSubviews method I added: float indentPoints = self.indentationLevel * self.indentationWidth; self.contentView.frame = ...
1
vote
0answers
114 views

Swiping to delete cell moving cell's custom UILabels?

I have a UITableViewCell and I have added custom UILabels to the cell. I implemented UITableView's delete methods to allow deleting of the cell when it is swiped. The problem is, when swiped, the cell ...
3
votes
4answers
221 views

UITableView reloadData crash

I added CustomImageView to the UITableViewCell. UITableViewCell *cell = nil; if (cell == nil) { cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault ...
1
vote
1answer
117 views

Change UITableViewCell's minus sign animation

I have an issue with editing table view: I changed the minus sign location in edit mode to the right side of the cell. The problem is that the button is sliding from the left and it makes it looks ...
1
vote
0answers
165 views

Use UITableViewCellDeleteConfirmationControl to know what is the current cell's subview

Is it OK to use UITableViewCellDeleteConfirmationControl this way: - (void)layoutSubviews { [super layoutSubviews]; [UIView beginAnimations:nil context:NULL]; [UIView ...
0
votes
0answers
84 views

Change editingAccessoryView location in custom cell

I would like the delete button to appear on the left side of the cell as opposed to the default right side and the rearrange button to appear on the right. I tried using ...
0
votes
2answers
37 views

Most efficient way to hide a UIView

Out of the following, which is the best way to hide a view? Setting frame to CGRectZero Hidden Property to YES alpha Property to 0.0 Does one have benefits that the other does not? In terms of ...

1 2 3 4 5 14