HUD с несколькими линиями

Как сделать HUD с несколькими линиями? Он мой код, а вот labelText одна строка

HUD = [MBProgressHUD showHUDAddedTo:[[TTNavigator navigator] window] animated:YES];
HUD.customView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"noImage.png"]];
HUD.mode = MBProgressHUDModeCustomView;
HUD.delegate = self;
HUD.labelText = @"text1 \n text2";
[HUD hide:YES afterDelay:3];
6
задан Luda 13 August 2012 в 09:20
поделиться