Post

Replies

Boosts

Views

Activity

Reply to Determine which swift version is available (if so) from framework
No idea about the Objective-C part, but for checking swift versions you can have this kind of conditional code: This is for the swift compiler version used (better for detecting the Xcode version used to compile): #if compiler(>=5.1) // do something #endif This is for the actual swift language version used: #if swift(>=5.1) // do something #endif
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to Is there a way to clear Auth cookies in SFSafariViewController?
No, there isn't. At least last time I checked.
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Sep ’22