Showing toast message with MBProgressHUD in mac os

972 Views Asked by At

I am showing toast message using MBProgressHUD but with toast message getting some view with it Below is code is using

HUD image

MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:window.contentView animated:YES];;

// Configure for text only and offset down
hud.mode = MBProgressHUDModeText;
hud.labelText = @"some message......";
hud.margin = 10.f;
hud.yOffset = 200.f;
hud.removeFromSuperViewOnHide = YES;
[hud hide:YES afterDelay:20];
3

There are 3 best solutions below

0
premkolindala On BEST ANSWER

For macOS Using MBProgressHud you can show like this

MBProgressHUD *hud = [[MBProgressHUD alloc] initWithView:window.contentView];
            hud.mode = MBProgressHUDModeText;
            hud.labelFont = [NSFont systemFontOfSize:13.0];
            hud.margin = 8.f;
            hud.opacity = 0.7;
            hud.yOffset = NSHeight(window.frame)/2-60;
            hud.cornerRadius = 4.0;
            hud.removeFromSuperViewOnHide = YES;
            hud.detailsLabelText = @"some message......";
            [window.contentView addSubview:hud];
            [hud show:YES];
            [hud hide:YES afterDelay:2.0];
0
Bhavesh Nayi On

//JUST REPLACE YOUR CODE AND CHECK

AppDelegate *appDel = (AppDelegate *)[[UIApplication sharedApplication] delegate];

MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:appDel.window animated:YES];
0
Hitesh Surani On

Code:

- (void)showLoader:(NSString*)strTitle view:(UIView*)view
{
    dispatch_async(dispatch_get_main_queue() , ^{
        MBProgressHUD *hud = [[MBProgressHUD alloc] initWithView:view.window];
        [view.window addSubview:hud];
        hud.labelText = strTitle;
        [hud show:YES];
    });
}

Use like this:

[self showLoader:@"Loading.." view:self.view]