2012-08-07 111 views

回答

4

下一次居然表现出一定的努力,与您寻求帮助

- (void)buttonTapped:(UIButton *)button; 
{ 
    UIView *expandingView = [[UIView alloc] initWithFrame:button.frame]; 
    expandingView.backgroundColor = [UIColor redColor]; 
    [self.view addSubview:expandingView]; 

    [UIView animateWithDuration:.25f 
        animations:^{ 
         expandingView.frame = self.view.bounds; 
        }]; 
}