i wrote below code to MBProgressHUD:
HUD = [MBProgressHUD showHUDAddedTo:self.view animated:YES];
[self.view addSubview:HUD];
HUD.delegate = self;
HUD.labelText = NSLocalizedString(@"Loading Workbench", nil);
HUD.detailsLabelText = NSLocalizedString(@"please wait", nil);
[HUD showWhileExecuting:@selector(loadWorkbench) onTarget:self withObject:nil animated:YES];
and in loadWorkbench method i wrote the code like:
[self performSelector:@selector(CallPrivateKwikis) withObject:nil afterDelay:0.1];
but from here CallPrivateKwikis is never called. i am unable to find the problem.
can any one of you please help on this.
Thanks in advance.