In swift there is the concept of designated initializer (which is the "normal" constructor we know from other languages, I assume).
But there is also something called Convenience Initializer, which I do understand how to write, but the point is lost on me.
As, If I understand correctly, you can achieve the same thing without writing the keyword convenience
, or not?
What is the use case for convenience initializer?
439 Views Asked by Itay Moav -Malimovka At
2
There are 2 best solutions below
0

As I understand, the only point in those initializers is convenience. Sometimes it happens that, we often need to create some object with same arguments over and over again. In that case, we can just add another init method which takes much less parameters and the remaining ones are hard coded.
For example, some Logger class
init(type: LoggerType, filepath: String, configurations: LoggerConfig, etc.)
It might be that we often use this logger with same arguments. To avoid duplicating code, we can add a convenience initializer with some default values
convenience init(){
self.init(type: LoggerType.SomeType, filepath: "/log", configurations: LoggerConfig.Default)
}
Actually it's very easy to understand them: they are initializers with default parameters.
From the docs:
Example:
In the above case, you cannot call
self.init()
, you have mark your initializer with theconvenience
keyword, otherwise it will be a compiler error. So you cannot chain two designated initializer from the same class.