The UITableViewCell class defines the attributes and behavior of the cells that appear in iOS UITableView objects.
0
votes
0answers
6 views
passing array to a tabelvew through segue
I have an app that shows a tablieview controller on startup, then its pushes to a viewcontroller where I type in a label and hit a button. When that button is clicked, it pops me back to the tableview ...
1
vote
0answers
11 views
Custom XIB cell for UITableView stuttering / hitching on scroll
I'm registering a XIB for my table's cell view. Nothing fancy, pretty straight forward little cell view with a couple of UIImageView and some UILabel. Things work as expected, but when I scroll I get ...
0
votes
1answer
26 views
AutoLayout not pinning subview to superview
I'm trying to pin a subview inside of a custom UITableViewCell class to the left side of the cell's contentView. I'm adding the subview to the contentView inside of the initWithStyle method of the ...
1
vote
2answers
29 views
Getting event from a table cell
Im beginning my ios development and for beginning i thought it will be fun to make a measure converter.
I managed to create with storyboards the table view with segues, custom cells with textfields ...
0
votes
1answer
21 views
image in cell overlaying text
The image seems to overlay the text in the cell, I'm not sure why this is happening but I'd like the text to go over the image. Any help is greatly appreciated.
This is how my code looks like.
...
0
votes
0answers
10 views
UITableView does not repopulate with reloadData
I have a UITableView that successfully populates with a NSMutableArray. However, when I try to use a search function that I have implemented, the UITableView does not repopulate at all.
The ...
0
votes
2answers
29 views
Cannot tap red minus delete button in UITableView
I am able to make the red minus button appear on each of my UITableViewCells with the following calls:
[self.tableview setEditing:YES];
and
-(UITableViewCellEditingStyle)tableView:(UITableView ...
0
votes
2answers
17 views
adding UITableViewCell programmatically to UITableView
I have created a custom UITableViewCell programmatically and wish to add it to a UITableView of UITableViewController created in IB, can you please help me with the code to do that
Thanks
-1
votes
1answer
33 views
tableView cells refreshing auto?
When I scroll in my tableview the cell seems to be refreshing because the duration in the left corner sometimes shows up and sometimes it doesn't. Does anyone know how I can make it stay at one place ...
1
vote
1answer
15 views
iOS UITableViewCell overflowing contentView
I am adding views to a UITableViewCell's contentView and some of it is taller than the cell's height. Currently, it just overflows on top of the cells below it, but ideally I would like it to get ...
0
votes
0answers
17 views
Semi-Selection of Custom UITableViewCell Corrupts UILabel Drawing
Tapping and then rolling your finger off of my UITableView's custom UITableViewCell corrupts the drawing of the contained UILabel. Neither setSelected: nor setHighlighted: are called. The UITableView ...
0
votes
1answer
21 views
text in cells duplicating and not showing up until I scroll [Images]
So I'm loading a YouTube channel inside a tableView and trying to add the correct duration but sometimes it doesn't show up at all and when it does show up there's another text behind it if you look ...
0
votes
1answer
50 views
How to retrieve data from sql server database in android?
Hi i am new to android already connect sql server i want to retrieve data from database to showing table view and how to bind the data thanks for advance
here is ma coding
public void ...
1
vote
2answers
31 views
Reorder/move UITableViewCell but moves back
I want to implement a method to be able to reorder the rows of a tableview.
In each section i only have one row. When the editing-state of the tableview is enabled, the move indicators appear as ...
0
votes
0answers
6 views
How to use QuickDialog to create a cell like `UITableViewCellStyleValue2` style cell?
The default style of the QuickDialog QLabelElement is some kind of UITableViewCellStyleValue1
But what I want is UITableViewCellStyleValue2,
So,
I try to set the QLabelElement's labelAlignment to ...