Reputation: 22939
I have a grouped UITableView
. Now unlike the default table view header my header should be next to the individual cells:
Standard:
[Header Cell]
[Item 1]
[Item 2]
What I need
+-------+----------------+
| | Item 1a |
| h1 +----------------+
| | Item 1b |
+ - - - +----------------+
| Item 1c |
+------------------------+
| | Item 2a |
| h2 +----------------+
| | Item 2b |
+------------------------+
| | Item 3a |
| h3 +----------------+
| | -placeholder- |
+-------+----------------+
Some remarks:
The challenge here is the height of the header cell:
clip subviews
then that header cell is shown but does not get pushed away at the correct position.Update 1: I just realized that apple uses such a list for the search (grouped by messages, mails, contacts, calenders etc.). So my question basically is how can I tweak UITableView
in order to behave like the grouped search results... :-)
(source: mshcdn.com)
Upvotes: 2
Views: 1086
Reputation: 22939
Update: I created a project on github, which does exactly this. I have extracted all the relevant code for the behaviour into two classes (BBFloatingHeaderViewController
& BBFloatingHeaderCell
). There is also an example project. I hope this is useful for others :-)
Here's the project: besi/FloatingTableViewHeader
This is an excerpt from the readme:
Floating UITableView headers
These classes aim to copy the behaviour found in iOS built-in Spotlight search, where the search results are grouped by category and the icon of the respective category floats on the left side of the search results.
Setup
Check out the example project so see how to setup the classes.
- Add the
.m
+.h
files ofBBFloatingHeaderViewController
andBBFloatingHeaderCell
to your project.- Create a TableView and set the Class of the ViewController to your subclass of
BBFloatingHeaderViewController
- Create the header cell in IB and set its class to your subclass of
BBFloatingHeaderCell
- Make sure that your floating header view is the topmost view in the
BBFloatingHeaderCell
's view hierarchy.The result
Upvotes: 4