The UITableViewCell class defines the attributes and behavior of the cells that appear in iOS UITableView objects.
0
votes
1answer
17 views
How do I modify the UIImageView so the image appears closer to the left edge?
I have this tableview:
These are all custom - static cells.
I created a property for the first UIImageView like so:
@property (nonatomic,strong) IBOutlet UIImageView *locationButtonImageView;
I ...
0
votes
1answer
17 views
IOS 6 with ARC, How to prevent Table View to not ask for new Cells when they are not discarded
IOS 6, ARC, trying to see if there is a way to prevent a custom table view cell from being "dropped" from the table list even if the cell is off screen. Yes, Yes, I know, should not be doing this but ...
0
votes
0answers
11 views
IOS, Custom Table View Cell with Observers, how to Detach Observers
So we have this Table View Custom Cell with it's own class. In the class we are playing with putting Key Value Pair Observers. Yes, we have reason for this...
Anyway, at certain times are are ...
0
votes
5answers
45 views
Hide UIButton in Custom UITableViewCell
In my tableview, I have several different custom cells. In one of them, it has a button. This button brings up another view controller. However, It is not needed until the tableview has fully ...
0
votes
2answers
18 views
How can I store the UIActivityIndicator state in UITableView?
I have a UITableView which shows file names. When the user taps on the cell, I download the tapped file. For this, I am showing an activity indicator at the left side of a selected cell. After the ...
0
votes
0answers
5 views
Storing path throught nested arrays in ios 6 with storyboard
I'm trying to write an application with storyboard for ios 6,a table view with 13 cells,and,every single cell when tapped,push the scene to another view controller.All the 13 cells have his master ...
0
votes
0answers
16 views
Multiple UITableViewCell in single UITableView using storyboard feature
I am having view similar like:
As you can see, there are various sections
Classes (Class-1, Class-2)
Classes > Courses (Course-1, Course-2)
Classes > Courses > Subjects (Subject-1, Subject-2)
...
0
votes
1answer
48 views
UILabels are not displaying in my table view cells using contentView property
I'm having an issue with UILabels not displaying in my table view cells using the contentView property of the cell. The UILabels were showing before I added a UIImage to the cells. I wanted to add the ...
1
vote
0answers
35 views
UIView fills background when scrolling on a UITableView
I'm having a problem with my UITableView. A UIView in the cells (the light grey background) seems to fill the cell for no apparent reason when scrolling.
Here's how it should look:
Here's how it ...
-1
votes
2answers
30 views
Lazy loading UITableView with multiple images in each cell
I am using lazy loading to show images on a table view.
But I need to create a tableview with multiple images in every cell.Which can be scrolled.
All images are loaded from server only
How can I ...
0
votes
2answers
30 views
How to get selected indexPath.section and indexPath.row value in UITableView?
I have insert 2 section and 2 rows in tableview, then i tried to get selected section and row value using UITapGestureRecognizer, but i have to get only indexPath.section value, i want both section ...
0
votes
2answers
35 views
Can't set properties in Custom UITableViewCell
I made a custom table view cell - i have a header, implementation, and nib. In the nib I set the style to custom, dragged a label on it and made an outlet in the nibs file owner.
From my UITableView ...
0
votes
1answer
20 views
Can not get touch event when UIView outside of UITableViewCell
We have a table cell and a drop down list(which customized via table view). the problem is when we add drop down list to a table cell content view, and open it, drop down list cannot get touch event.
...
0
votes
1answer
30 views
Expand / Collapse UITableViewCell with different cell and data source
I did a UITableView filled with a plist data source, and I did custom cells with Interface Builder (so I'm using xib files)
here's the part of code where I'm creating cells:
- (UITableViewCell ...
0
votes
1answer
18 views
Trying to use visibleCells when scrolling UITableView in iOS
I am building an app where a UIImageView traverses a UITableView programmatically. I have created two buttons ("up" and "down") that control which direction the UIImageView moves. What I am trying ...