The VSCode extension is not really designed for iOS development. iOS development requires features that are only available in Xcode.
But you can get some of the way by setting Swift: SDK. The easiest way to get this correct is use the command Swift: Select Target Platform.... With this you will get symbol completion for the symbols in the SDK you select.
It will also attempt to use that SDK when building, but that produces undefined results.
You can try xcode-build-server [1] tool that parses build logs and provides build flags for Swift LSP server. Additionally you can try my VSCode extension that integrates with different tools like xcodebuild, swift-format, xcode-build-server and so on to make development of iOS/Swift applications in VSCode little bit easier.