Hi,
This is very nice tutorial,exactly what I was looking for. But I need to open 2 sections(Headers) when view loads. Right now I am able to open one section when view loads. How can I open 2 or more sections when view loads.
When I added the below lines section one is opened with animation
if (!self.startsClosed && [selectionIndexes count] == 0) {
[self setSelectedIndex:0];
}
In the same way I tried for second section, but it's not working for me. May be I need to make changes some where else.
if (!self.startsClosed &&[selectionIndexes count] == 2) {
[self setSelectedIndex:2];
}
Please help me out. Once again thanks for your great work.