我試圖將uibutton的一個錨點更改爲(0,0)(它不是中心點)並旋轉。如何在[UIVIEW動畫]中更改uibutton的錨點?
如何更改uibutton的錨點?
mybutton.anchorPoint? = CGPointMake(0, 0); <= How to change?
[UIView animateWithDuration:5.0 animations:^{
mybutton.transform = CGAffineTransformMakeRotation(180 * M_PI/180);
}];
你能告訴我代碼嗎? – 2012-02-21 17:23:07
嗯...在代碼中更改錨點的部分在哪裏? – 2012-02-21 18:15:44
您不需要更改圖層上的錨點,默認情況下它是中心。 – 2012-02-21 18:40:43