tags:

views:

27

answers:

1

Hello All,

      Any one help to change the position of UIAlertView .Thanks in advance.

Regards, Arunkumar.P

A: 

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];
Vladimir