It is still not working in my environment.
Xcode 16.1 Betas 2
Xcode 16.0
Xcode 16.0 Betas 5
Is drag and drop not possible in Xcode versions prior to 15?
Post
Replies
Boosts
Views
Activity
You probably need a "default" clause to handle the switch on string literal.
import Foundation
let text = "Remifentanilo 5 mg en 250 ml"
func remi5en250() {
print("something")
}
switch text {
case "Remifentanilo 5 mg en 250 ml":
remi5en250() // printed "something"
default:
break
}
Thank you.
I have the implementation I envisioned. Happiness to you.
I thought the same! thank you.
I was skeptical about the content of the document because SceneDelegate has a window.
All solved. thank you.