How can I make HUD that has multiple lines? He is my code, but the labelText is one line
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];
use detailsLabelText method, i.e.
HUD.detailsLabelText = @"your next line here"
you can change the style using detailsLabelFont.