¿Cómo puedo hacer HUD con múltiples líneas? Él es mi código, pero el labelText es una líneaHUD con líneas múltiples
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];
http://stackoverflow.com/a/15031656/1557383 u puede probar esto. Funcionó para mí – vinny