Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Alert View Position isn't Center

I have UIAlertView in UIView. Alert View will appear when error about login occur.

Sometime it worked on Center Position following this picture.

enter image description here

My code

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Login Failed" message:exceptionString delegate:nil cancelButtonTitle:@"OK" otherButtonTitles: nil]; 
[alert show];

but sometime it worked on Left Position following this picture.

enter image description here

I want on Center Position only.

How to fix it. Thank you.

like image 350
Natthawat Sudsang Avatar asked Mar 05 '14 05:03

Natthawat Sudsang


1 Answers

How are you displaying the alert view? Are you setting the frame with this style initWithFrame?

It should be something like the following.

NSString *exceptionString = "something"; // where ever you get you failed message.

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Login Failed" message:exceptionString delegate:nil cancelButtonTitle:@"OK" otherButtonTitles: nil];

[alert show];
like image 169
Ben Avery Avatar answered Oct 10 '22 08:10

Ben Avery