What is bridging header in swift?
Answer / Rohit Srivastava
A Swift bridging header is a source file with a .h extension, created by Xcode when you add a Swift file to your Objective-C project. It provides a way for Swift and Objective-C code to communicate, making it possible for the two languages to interact with each other in a project.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is difference between weak and strong in swift?
What is enum in swift?
Is swift pass by reference?
What is differences in swift 1.x, 2.x, 3.x, 4.x?
Consider the following code: let op1: Int = 1 let op2: UInt = 2 let op3: Double = 3.34 var result = op1 + op2 + op3 Where is the error and why? How can it be fixed?
What is a tuple in swift?
What is tuple? How to create a tuple in swift?
How does a swift transfer work?
Explain how multiple line comment can be written in swift?
Is swift similar to c?
How will you define base class?
What is a type in swift?