Remove Pop Ups XCode

1

Hello, I have an app already made and they asked me to do an update .... the problem is that they asked me to remove the pop-ups from the app and I find nothing to remove ... Can anyone help?

    
asked by anonymous 03.07.2015 / 14:51

1 answer

0

Bruno, as the CCastro said his question was confused, but if the project is for iPhone and Pop Up is appearing, it is very likely that the code below in the controller of the view that appears pop up.

func adaptivePresentationStyle(for controller: UIPresentationController) -> UIModalPresentationStyle {
    return UIModalPresentationStyle.none
}

If you have this code and you delete it, the popup is not deleted, what happens is that the popup appeared as popup, now it will be loaded normally, ie the iPhone default.

But in the reply to Paulo Rodrigues that you used the INFO button as an example, you say that you want to delete the button, in this case what Jadson Medeiros said is correct.

    
13.12.2017 / 20:02