Toggle navigation
Toggle navigation
This project
Loading...
Sign in
open-source
/
warply_sdk_framework
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Manos Chorianopoulos
2022-09-12 12:55:11 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f6ec1cc8fb6a950916d8e619836b29727062e502
f6ec1cc8
1 parent
64d458f2
fix NumberPopupViewController presentation style
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
SwiftWarplyFramework/Pods/Pods.xcodeproj/xcuserdata/manos.xcuserdatad/xcschemes/xcschememanagement.plist
SwiftWarplyFramework/SwiftWarplyFramework.xcodeproj/xcuserdata/manos.xcuserdatad/xcschemes/xcschememanagement.plist
SwiftWarplyFramework/SwiftWarplyFramework.xcworkspace/xcuserdata/manos.xcuserdatad/UserInterfaceState.xcuserstate
SwiftWarplyFramework/SwiftWarplyFramework/NumberPopupViewController.swift
SwiftWarplyFramework/Pods/Pods.xcodeproj/xcuserdata/manos.xcuserdatad/xcschemes/xcschememanagement.plist
View file @
f6ec1cc
...
...
@@ -7,7 +7,7 @@
<key>
Pods-SwiftWarplyFramework.xcscheme_^#shared#^_
</key>
<dict>
<key>
orderHint
</key>
<integer>
0
</integer>
<integer>
1
</integer>
</dict>
</dict>
</dict>
...
...
SwiftWarplyFramework/SwiftWarplyFramework.xcodeproj/xcuserdata/manos.xcuserdatad/xcschemes/xcschememanagement.plist
View file @
f6ec1cc
...
...
@@ -7,7 +7,7 @@
<key>
SwiftWarplyFramework.xcscheme_^#shared#^_
</key>
<dict>
<key>
orderHint
</key>
<integer>
1
</integer>
<integer>
0
</integer>
</dict>
</dict>
</dict>
...
...
SwiftWarplyFramework/SwiftWarplyFramework.xcworkspace/xcuserdata/manos.xcuserdatad/UserInterfaceState.xcuserstate
View file @
f6ec1cc
No preview for this file type
SwiftWarplyFramework/SwiftWarplyFramework/NumberPopupViewController.swift
View file @
f6ec1cc
...
...
@@ -36,7 +36,7 @@ protocol NumbersPopupDelegate {
delegateBallon
=
delegate
// set the presentation style
self
.
modalPresentationStyle
=
UIModalPresentationStyle
.
popover
self
.
modalPresentationStyle
=
UIModalPresentationStyle
.
overFullScreen
// set up the popover presentation controller
// self.popoverPresentationController?.permittedArrowDirections = UIPopoverArrowDirection.up
...
...
@@ -113,11 +113,11 @@ protocol NumbersPopupDelegate {
}
public
func
adaptivePresentationStyle
(
for
controller
:
UIPresentationController
)
->
UIModalPresentationStyle
{
return
UIModalPresentationStyle
.
f
ullScreen
return
UIModalPresentationStyle
.
overF
ullScreen
}
public
func
adaptivePresentationStyle
(
for
controller
:
UIPresentationController
,
traitCollection
:
UITraitCollection
)
->
UIModalPresentationStyle
{
return
UIModalPresentationStyle
.
f
ullScreen
return
UIModalPresentationStyle
.
overF
ullScreen
// return UIModalPresentationStyle.none
}
...
...
Please
register
or
login
to post a comment