关于应用中的UIView:view在button点击可以扩大和合并。在ios5以前的版本运行正常,但是在ios6中就不行了。
不知道在ios6中应该怎么实现,谢谢解答。
CGFloat x= 60,y = 391,w1=210,h1=48;
[ViewShare setHidden:YES];
[UIView beginAnimations:@"animationOff" context:NULL];
[UIView setAnimationDuration:0.2f];
[ViewShare setFrame:CGRectMake(x, y, w1, h1)];
[UIView commitAnimations];