You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// showing overlay = nil
-(void)setOverlayView:(MRProgressOverlayView *)overlay{
self.overlayView = overlay;
}
// I will get from here
-(MRProgressOverlayView *)getOverlayView{
return self.overlayView;
}
SecondViewController.m
// call from here
[[AppDelegate getOverlayView] dismiss:YES];
But it always calls setOverlayView and says overlay = nil.
why?
The text was updated successfully, but these errors were encountered:
Hi,
I want to send the MRProgressView to the other viewController. I used it like this but it did not work.
FirstViewController.m
AppDelegate.m
SecondViewController.m
But it always calls setOverlayView and says overlay = nil.
why?
The text was updated successfully, but these errors were encountered: