2012-08-05から1日間の記事一覧

UIAlertView メッセージを左寄せに

UIAlertView で表示するメッセージを左寄せにするには、、 以下のように。 UIAlertView* view = [ [UIAlertView alloc] initWithTitle:nil message:@"message" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil ]; ((UILabel *)[[view subviews]…