Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.0k views
in Technique[技术] by (71.8m points)

xcode - In Swift, can I find out which initializer was used to instantiate a class?

When using Swift, is there a way of using Xcode or any other tool to find out which initializer was used to instantiate a class? Let me provide this example from SwiftUI:

List {
  ForEach(names.array, id: .self) {
    name in Text(name)
  }
}

To understand the mechanics of List and build more elaborate lists, I'd want to know how this list was instantiated. The documentation shows me that List has around ten initializers, and given that I'm not an expert in the complex types involved, it's hard for me to find out which one was used.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

If you don't mind adding explicit init, Cmd-clicking on init will move you to the right header.

        List.init {
            ForEach.init(names.array, id: .self) {
            name in Text(name)
          }
        }

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...