Any help in changing the position of the UIAlertView
As with any UIView subclass, you can apply the affine transform to a UIAlertView, for example. to move it you can use:
UIAlert *alert = //create alert alert.transform = CGAffineTransformMakeTranslation( x, y); [alert show]; [alert release];
Source: https://habr.com/ru/post/1771932/More articles:Sound data corruption iOS? - iosTesting at leiningen - unit-testingdocument.insertBefore throws an error - javascriptWhat are the most important improvements in Java code on Android? - javaProblem while backing up Oracle 10g - oracleWIndows GUI automation in minimized window - winapiTiles2 error with cascade attribute in put-attribute tag - struts2Problem writing metadata for an image - cocoa-touchInheritance C # Generics - genericsImplement authentication / authorization on Flash Media Server - flashAll Articles