2016-04-03 48 views

回答

1

你可以嘗試使用CGAffineTransform旋轉180度

#import <QuartzCore/QuartzCore.h> 
#define degreesToRadians(x) (M_PI * x/180.0) 


[textbox setAnchorPoint:CGPointMake(0.5, 0.5)]; 
[textbox setTransform:CGAffineTransformMakeRotation(degreesToRadians(180))]; 

通過設置anchorPoint0.50.5意味着我們想要的旋轉適用於textbox

更多的解釋與信息中心可以被發現here

+0

謝謝..我是IOS編程新手,但我相信我會追求這.. –