Thursday, December 2, 2010

UIAlertView Text Aligment

Below is the code to left align the text in UIAlertView.

UIAlertView *someAlert = [[UIAlertView alloc] initWithTitle:@”Alert" message:@”Here long Description goes." delegate: self cancelButtonTitle: @"Ok" otherButtonTitles: nil];
[someAlert show];
[someAlert release];
((UILabel*)[[someAlert subviews] objectAtIndex:1]).textAlignment = UITextAlignmentLeft;//left alignment