Start a Project

Creating Custom UIAlertController using UIWindow in Ios

UIAlertController

 

 

When we use UIAlertController   then we require view controller to present, if it is not there it will not work or if  launched without getting present view then it is not possible to remove from view controller  so on that time UIWindow is used to  create the custom alert controller . it will run on the top root of the window .

 

 

To Launch :—

Ex :  UIWindow *currentWindow = [UIApplication sharedApplication].keyWindow;

[className  alertController:currentWindow];

To Remove :—

if([currentWindow viewWithTag:121212])
[[currentWindow viewWithTag:121212] removeFromSuperview];

 

 

 

 

Exit mobile version