开发者

Change Position of UIAlertView

开发者 https://www.devze.com 2023-01-22 04:52 出处:网络
Any one help to chang开发者_Python百科e the position of UIAlertViewAs for any UIView subclass you can apply affine transform to UIAlertView, e.g. to move it you can use:

Any one help to chang开发者_Python百科e the position of UIAlertView


As for any UIView subclass you can apply affine transform to UIAlertView, e.g. to move it you can use:

UIAlert *alert = //create alert
alert.transform = CGAffineTransformMakeTranslation( x, y);
[alert show];
[alert release];
0

精彩评论

暂无评论...
验证码 换一张
取 消