InterviewSolution
Saved Bookmarks
| 1. |
In Swift, what does the init() method do? |
|
Answer» The process of preparing an instance of an enumeration, structure, or class for use is known as initialization. Initializers are also used when a new instance of a type is created. An initializer is a no PARAMETER instance method. The init keyword can be WRITTEN using the initializer. Their PRIMARY ROLE is to ensure that new instances of a type are correctly initialized before they’re used for the first time. Its syntax is given below: init(){// New Instances are initialized here} |
|