I am trying to build a custom share panel with buttons.

  • This is how it appears before being clicked.

screenshot

  • This is how it appears after.

    screenshot

I know that may be complicated, but I need the steps to accomplish this.

The images show the mock-ups of the panel.

link|improve this question

36% accept rate
feedback

2 Answers

You just think complicated. It is not complicated; all you need is a view on the main window with this arrow custom button, when click it just move it from bottom to top.

link|improve this answer
thanks @iTarek , really it was simple , it's in the next answer – Yahia Sep 21 '11 at 9:21
feedback
up vote 0 down vote accepted

I found the solution.

  • Create the user interface.

    screenshot

  • Link the user interface with IBoutlets and IBActions.

  • Animate the UIView item with buttons.

    -(IBAction) openPanelBtnPressed:(id)sender{
    CGPoint wpos = self.panel.frame.origin ;
    if(wpos.x == 0 && wpos.y ==133){
        [UIView beginAnimations:nil context:nil];
        [UIView setAnimationDuration:1];
        [UIView setAnimationBeginsFromCurrentState:YES];
        self.panel.frame=CGRectMake(0.0,330, 76, 368);
        self.panel.transform = CGAffineTransformIdentity;  
        [UIView commitAnimations];
    UIImage * imgOpenPanelBtn = [UIImage imageNamed:@"up.png"];
    [self.btnOpenPanel setImage:imgOpenPanelBtn forState:UIControlStateNormal];
    
     }else {
            [UIView beginAnimations:nil context:nil];
            [UIView setAnimationDuration:1];
            [UIView setAnimationBeginsFromCurrentState:YES];
            self.panel.frame=CGRectMake(0.0, 133.0, 76, 368);
             self.panel.transform = CGAffineTransformIdentity;  
            [UIView commitAnimations];
            UIImage * imgOpenPanelBtn = [UIImage imageNamed:@"down.png"];
            [self.btnOpenPanel setImage:imgOpenPanelBtn forState:UIControlStateNormal];
    
     }
     }
    
  • The result is this one: http://www.youtube.com/watch?v=6zoZKjbZAps.

  • You can find the explanation in Arabic on my blog.

  • You can download the project.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.