Not sure, but you need to change the code of the MBProgressHUD.m file.
In the MBProgressHUD.m file there is a method - (void)setupLabels . This method creates a label. Make this label a multi-line label by setting its numberOfLines property.
Example:
label.numberOfLines = 2;
Hope this works.
source share