Hi.
I see a # symbol allot in swift documentation, as in definition below what it means ? Kindest Regards
import <#module#>
Hi.
I see a # symbol allot in swift documentation, as in definition below what it means ? Kindest Regards
import <#module#>
It means you have to replace what is between <# #> by the relevant information.
In this case, it means you have to give the module name. Such as:
import SwiftUI
or
import UIKit
import AVFoundation
When you use generics, it asks you to provide the type…
Thanks allot, but it’s not related to generics definition correct ? Didn’t see any generic definitions using this symbol ?
Ok. Thanks allot.