Make modal window wallapop type in ios with swift

2

I need to know if it is possible to do this modal window:

I tried to do it with custom segues but it does not work for me

Is there any way to do it with swift ??

    
asked by 03.08.2016 в 12:02
source

1 answer

1

It's very simple. The first thing you have to do is a scale of rootViewController.view in AppDelegate to make it smaller. In this way, you will get that black background that corresponds to the window principal.

Next, for the screen that is ahead, make a modal in which the UITableView of the filters start at 60 px of top . So, the background is transparent. The only thing that will be missing is that the modalPresentationStyle is of type Custom

    
answered by 03.08.2016 / 17:24
source