0
votes
1answer
70 views

Linear counting of rows in sectioned tableview

I have a sectioned tableview where the number of sections and number of rows is dynamic. Data is given to each row from different arrays and dictionaries. I would like to get the number of the row by ...
0
votes
0answers
29 views

Tableview and multi section common

My problem is: I receive a JSON : [{"date":"22/03/2013","nom":"toto"},{"date":"21/03/2013","nom":"mark"},{"date":"22/03/2013","nom":"gens"}] I like write a date in the header section and a name in ...
0
votes
1answer
87 views

Can't figure out this PHP script

I'm a PHP novice, and I recently found this database-free pagination script on a forum; however, I can't quite understand which part of the script defines a row (or item), and how many rows a page can ...
1
vote
0answers
57 views

Hidding/Deleting Table View Sections

I'm developing an app similar to that of the contacts app. It has a list of items and each item has a detail view. The detail view is a table view and displays values such as name, place, value, etc. ...
2
votes
1answer
290 views

iOS: How to sort rows in specific Section of uitableview

i am populating my tableview with nsfetchedresultscontroller. i am using an nssortdescriptor to sort the sections and rows. actually i am sorting from new to old. But now, i want only to sort the ...
0
votes
1answer
286 views

iOS UITableViewStylePlain Sections and Row issue

I have trouble with implementing dynamic count of rows in two sections. My codes below: - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section { if ...
0
votes
1answer
563 views

Inserting row to the section in tableview dyanmically iphone

I am trying to insert row in the section. cell is a custom cell having textfield. Below is the code snippet, -(NSInteger)tableView:(UITableView *)table numberOfRowsInSection:(NSInteger)section { ...
2
votes
1answer
79 views

Simplest way to reload rows on click of sections?

What would be simplest way to show only sections and on click of that sections correspondent rows should open ?
0
votes
1answer
135 views

Problem to display the good data (from a plist) in the right row in my sectioned tableview

I've a sectionned tableview with 3 sections (Motif - Couleur - Other) The data of the tableview are loaded from a plist witch looks like this <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE ...
0
votes
3answers
997 views

iPhone UITableView populating variable rows sections from flat array

I thought that would be very common and easy iPhone App. In the main app I connect to database, retrieve values from database (NSDate converted to NSString)n and put into single array. Then in one of ...
1
vote
2answers
851 views

UITableView: Juxtaposing row, header, and footer insertions/deletions

Consider a very simple UITableView with one of two states. First state: One (overall) table footer One section containing two rows, a section header, and a section footer Second state: No table ...