Any one help to change 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];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With