-2
votes
1answer
26 views
Making the Subtitle in a Table View a time stamp (Objective C)
I am working on an educational task manager and I am wanting to add a Time stamp to the subtitle section of the cell. I have coded the title of the task correctly but I want to replace subtitle with a ...
-5
votes
0answers
20 views
Why doesn't pushViewController work? [closed]
Hi all have a little problem don't know whether you can help. Here is my code for the push basically the entire viewController file :
-(void)tableView:(UITableView *)tableView ...
0
votes
2answers
36 views
How to make the TableView scrollable with already loaded data in iOS
I am able to fetch list of data from a restful web service. The goal is to display the same in the form of rows in iPhone application.
I could able to bring up the table with data while rendering the ...
0
votes
2answers
15 views
How do you resize a UITableViewController tableView?
Just your basic UITableViewController dragged in from interface builder.
The size controls are faded out. Why? Setting the frame in code doesn't work either.
0
votes
3answers
25 views
UITableViewCell highlighting with hiding separator lines
I'd like to have a UITableView with custom UITableViewCells and custom separators.
As far as I know there is no separate "separator view", so I have to include the separator image in the cells ...
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
2answers
17 views
Change title of UITableView to a cell name in iOS
I have a UITableView with some rows that are allocated dynamically. When I tap on a row I will go to another TableView using a push Segue, how do I change the second table view title to the cell name ...
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
1answer
19 views
Modal Segue View Controller Preservation
I have a quick question. I have a ViewController (parent) that has a UITableView in it. Within that view contains a button triggering a modal segue to another viewController (child) with a ...
0
votes
1answer
29 views
How to see if NSFetchedResultsController return nothing?
I rewrite my project using NSFetchedResultsController. It almost work. But there is something I want to do which was easy in the prevous code but I don't imagine where to code that.
When the ...
0
votes
0answers
16 views
Accessibility UITableView scrolling
I am trying to put a custom tableview cell implementation and have 3 different kind of cells lined up in a tableview. if i simply add accessibility label to each and every table view cell it works ...
0
votes
1answer
28 views
iOS: Not able to navigate to another view controller
I have a main view controller in which I have a UITableView. And in the didSelectRowAtIndexPath(), I am initializing a new view controller and trying to navigate to it. Below is my code. But I am ...
1
vote
1answer
33 views
How to populate UITableView with UISwitch.
I am using Apple's Sample Code TheElements for this question. The project can be found here: TheElements
I would like to know how to populate the "Grouped by State" UITableView using a UISwitch. I ...