Manos Chorianopoulos

fix NumberPopupViewController presentation style

...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
7 <key>Pods-SwiftWarplyFramework.xcscheme_^#shared#^_</key> 7 <key>Pods-SwiftWarplyFramework.xcscheme_^#shared#^_</key>
8 <dict> 8 <dict>
9 <key>orderHint</key> 9 <key>orderHint</key>
10 - <integer>0</integer> 10 + <integer>1</integer>
11 </dict> 11 </dict>
12 </dict> 12 </dict>
13 </dict> 13 </dict>
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
7 <key>SwiftWarplyFramework.xcscheme_^#shared#^_</key> 7 <key>SwiftWarplyFramework.xcscheme_^#shared#^_</key>
8 <dict> 8 <dict>
9 <key>orderHint</key> 9 <key>orderHint</key>
10 - <integer>1</integer> 10 + <integer>0</integer>
11 </dict> 11 </dict>
12 </dict> 12 </dict>
13 </dict> 13 </dict>
......
...@@ -36,7 +36,7 @@ protocol NumbersPopupDelegate { ...@@ -36,7 +36,7 @@ protocol NumbersPopupDelegate {
36 delegateBallon = delegate 36 delegateBallon = delegate
37 37
38 // set the presentation style 38 // set the presentation style
39 - self.modalPresentationStyle = UIModalPresentationStyle.popover 39 + self.modalPresentationStyle = UIModalPresentationStyle.overFullScreen
40 40
41 // set up the popover presentation controller 41 // set up the popover presentation controller
42 // self.popoverPresentationController?.permittedArrowDirections = UIPopoverArrowDirection.up 42 // self.popoverPresentationController?.permittedArrowDirections = UIPopoverArrowDirection.up
...@@ -113,11 +113,11 @@ protocol NumbersPopupDelegate { ...@@ -113,11 +113,11 @@ protocol NumbersPopupDelegate {
113 } 113 }
114 114
115 public func adaptivePresentationStyle(for controller: UIPresentationController) -> UIModalPresentationStyle { 115 public func adaptivePresentationStyle(for controller: UIPresentationController) -> UIModalPresentationStyle {
116 - return UIModalPresentationStyle.fullScreen 116 + return UIModalPresentationStyle.overFullScreen
117 } 117 }
118 118
119 public func adaptivePresentationStyle(for controller: UIPresentationController, traitCollection: UITraitCollection) -> UIModalPresentationStyle { 119 public func adaptivePresentationStyle(for controller: UIPresentationController, traitCollection: UITraitCollection) -> UIModalPresentationStyle {
120 - return UIModalPresentationStyle.fullScreen 120 + return UIModalPresentationStyle.overFullScreen
121 // return UIModalPresentationStyle.none 121 // return UIModalPresentationStyle.none
122 } 122 }
123 123
......