1
vote
0answers
71 views

Parse RSS feed and sort UITableView by date using Cocoa-touch

I parse a RSS-Feed an show the result in a UITableview with one section. The rows ar dynamic by item count. Now i want to sort all News from the Feed by date. All news from a date in a separate ...
0
votes
0answers
169 views

sectionForSectionIndexTitle not scrolling

i've searched the different questions and haven't found the same problem. I have a UITableView that is populated with sections and rows. So far so good. I've implemented both ...
-1
votes
2answers
653 views

How to make the tableView look like the iPhone Settings Page

How does the table view appear with rounded corners (as shown below)? I would appreciate any sample code or may be some tutorial for having the table look rounded in the corners. Each section title ...
1
vote
1answer
182 views

About sectioning your UITableView

Hey everybody, i'm working on a tableview, which displays more than one line of text in its cell. But what my question is: I want to have two sections, which I've already done. But is it possible to ...
0
votes
1answer
311 views

Insert items into alphabetical sections in tableview

So, I have an array of various names and I have populated the table with section headers A-Z. Is it correct to find the first char of my data and then subsequently put it in the correct section, or ...
0
votes
1answer
774 views

willSelectRowAtIndexPath Question

How do you add a second section (SECOND_SECTION) here to be excluded from selection when editing? (NSIndexPath *)tableView:(UITableView *)tableView willSelectRowAtIndexPath:(NSIndexPath *)indexPath ...
0
votes
1answer
163 views

Create a timetable with CoreData

I'm new to Stack Overflow and have my first question. I want to develop an application with a timetable. I've one UITableViewController and one CoreData entity called 'SchoolClass'. With arrow ...
0
votes
1answer
2k views

iPhone: add an image to grouped uitableview section header?

I know I can change the way the section header looks by implementing viewForHeaderInSection: The thing is I want to add a UIImageView to the right of the header text without modifying the look of ...
3
votes
3answers
3k views

UISearchBar Table Section Index Titles Overlap

How do I change the width of the UISearchBar when it is inside a table header so that the section index doesn't overlap the textfield? I want to recreate the same layout you find in the contacts view ...