How can I display UIAlertview on the bottom of the iphone?
usually UIAlertview appears in the middle of the iphone screen, but I want to display it at the bottom of the iphone. How can i do this?
+2
raaz
source
to share
1 answer
You can change the position UIAlertView
as follows:
UIAlertView * alert = [ [ UIAlertView alloc ] initWithTitle:@"Alert" message:@"Alert"
delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil ];
alert.transform = CGAffineTransformTranslate( alert.transform, 0.0, 100.0 );
[ alert show ];
You can see more here.
+1
FreeAsInBeer
source
to share