So I have a list of highscores that I display at the end of a game in a UIAlertView along with the users own score.

I was wondering whether there was a way to format this text so that it would appear in a nicely formatted list with even spacing for the different names and times or if I will have to create my own interface instead of using the UIAlertView.
EDIT: code for UIAlertView
UIAlertView *alertView =[[UIAlertView alloc] initWithTitle:nil message:[NSString stringWithFormat:@"Your Time: %.2f seconds.\n\n1. %@ %@\n2. %@ %@\n3. %@ %@\n4. %@ %@\n5. %@ %@",currentTime,[array objectAtIndex:0],[scoreArray objectAtIndex:0],[array objectAtIndex:1],[scoreArray objectAtIndex:1],[array objectAtIndex:2],[scoreArray objectAtIndex:2],[array objectAtIndex:3],[scoreArray objectAtIndex:3],[array objectAtIndex:4],[scoreArray objectAtIndex:4] ] delegate:self cancelButtonTitle:nil otherButtonTitles:@"Main Menu",@"Play Again", nil];
Both the arrays are taken from NSUserDefaults
EDIT 2: Also, name is limited to 10 characters