appsome / AccordionView

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

Doesn't scroll when changing frame #13

Closed ciponthenet closed 10 years ago

ciponthenet commented 10 years ago

After setting a frame with smaller height the control doesn't scroll. Perhaps the inner scrollview frame remains unchanged.

ciponthenet commented 10 years ago

This does the trick:

-(void)setFrame:(CGRect)frame{
    [super setFrame:frame];
    scrollView.frame = frame;
}