I have in my application one ViewController that requires a UIScrollView
In this UIScrollView i have many UIButton's. When i press one button bellow the button that i touched i want to show a UIView animating his entrance. Just like a accordion, like this: Jquery demo
Currently i have this method to open the "accordion":
-(void) openView:(UIView *)view inFrame:(CGRect)final {
CGRect frame = view.frame;
frame.size.height = 0;
frame.origin = finalFrame.origin;
view.frame = frame;
[self.buttonsView addSubview:view];
[UIView animateWithDuration:1.0 animations:^{
view.frame = finalFrame;
} completion:^(BOOL finished){
}];
}
the self.buttonsView is the UIView that i use inside my scrollview.
With this method i can insert a view rigth after my button. But the problem is: I can't open the space between the buttons to enlarge my buttonsView
is there a way to do this?
button1
button2
button3
button 2 clicked:
button1
button2
a view
button3
button 2 clicked again:
button1
button2
button3
And i can't use UITableView