Hello,
I need to customize the page where on any event the customizable "Button menu pane" has been visible from the bottom, just like one of the application "Twitterrific" (please see the screenshot). I've tried to implement through with modalViewController properties but it populate my customizable view on the whole screen and my parent view is disappeared in the background.
**Little Code snippet:**
MyCustomizableButtonMenuContoller *buttonMenucontroller = [[MyCustomizableButtonMenuContoller alloc] init];
//To show my customizable button menu from bottom at parent view on any event. [self presentModalViewController:buttonMenucontroller animated:YES];
//To hide customizable button menu. [self dismissModalViewConrollerAnimated:YES];
I v'e also tried to transparent my customizable button menu view but it doesn't work on my requirement. The UIActionsheet seems to be the one i'm looking for but again is it possible to customize the buttons with images?? If there are any other ways to achieve the scenario in the screen shot, please let me know about your findings or ideas.
Screenshot: http://scaline3.appspot.com/Button_menu_pane.png
Thanks in advance.