我正在致力於UIView
。此按鈕點擊時展開並摺疊。它在上工作iOS < = 5但不工作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];
而且Ref Page
謝謝..
你在哪裏隱藏「ViewShare」? – shabbirv 2013-03-05 08:30:58
其視圖名稱... 隱藏在視圖中 – Mani 2013-03-05 08:32:12
如果隱藏,動畫將不起作用。如果您將ViewShare設置爲隱藏在 – shabbirv 2013-03-05 08:35:49