appsome / AccordionView

Simple accordion view in Cocoa Touch
Other
144 stars 38 forks source link

Open 1 section at a time #10

Closed khawarshzd closed 10 years ago

khawarshzd commented 10 years ago

How to make it work, so that only section is opened at a time? If try to open another the previous should close.

suda commented 10 years ago

Set allowsMultipleSelection to NO like this:

accordion.allowsMultipleSelection = NO;
khawarshzd commented 10 years ago

Thanks! Its working.