Tagged Questions
0
votes
1answer
36 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
33 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
53 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
0answers
13 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
47 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
46 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
28 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
65 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
76 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
45 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
49 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
61 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
34 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
107 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
111 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
50 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
100 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
277 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
39 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
46 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
148 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
705 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
81 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
48 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
370 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
130 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
69 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
65 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
115 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
77 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
110 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
210 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
154 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
79 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
35 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
vote
1answer
151 views
custom uitableviewcell will not display label texts
And the value of the labels are null as well.
I'm not really sure what's going on.
These are my classes/codes
@interface CustomEventCell : UITableViewCell{
}
@property (nonatomic, weak) IBOutlet ...
0
votes
2answers
49 views
UITableViewCell _tableView property?
I'm trying to implement a custom UITableViewCell and I'm hoping to access the parent tableView from with the cell subclass. I was in the process of creating a custom init method that allows me to ...
0
votes
1answer
66 views
Changing UITableViewCell's default style's subviews' class
I'm currently working on an update for my app. One of the new features I'm intending to add in requires me to replace the class of a UILabel in a UITableViewCell. However, I was previously using one ...
0
votes
0answers
57 views
Non-visible UITableViewCell subviews are not drawn correctly
I have a UITableView that takes the whole screen, each UITableViewCell has number of UILables that exceed the width of the table, so that I change its content size to fit the whole subviews.
The ...
1
vote
2answers
117 views
UITablaViewCell loading Custom XIB for different Orientation and Cell Types
I have a custom cell class named ProductiPadCell, designed for iPad. (iOS 5 SDK)
What I am trying to achieve is to load my custom cell according to the current state (expanded or not) and interface ...
-1
votes
1answer
107 views
Can't move custom UITableView Cell
I'm using a custom UITableCell and I want to move it. I set up UITableView's Editing and Animated
[self.Plans_UITableView setEditing:YES animated:YES];
And I set
- (BOOL)tableView:(UITableView ...