I like the `defer init` idea but suggest you have to explicitly call it at the end of all the other non-convenience `init`s. The advantage of an explicit call are two fold:<div><br></div><div>  1. It is obvious what is happening</div><div>  2. You can pass arguments <br><br>On Friday, 29 April 2016, Basem Emara via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a>&gt; wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I see what you’re saying and the forced optionals is pretty inconvenient.<br>
<br>
As far as syntax, how about more of a “deferred” init that gets triggered regardless like this:<br>
<br>
defer init() {<br>
    // Always gets called no matter what designated init triggers<br>
}<br>
<br>
&gt; On Apr 27, 2016, at 5:52 PM, Shannon Potter via swift-evolution &lt;<a href="javascript:;" onclick="_e(event, &#39;cvml&#39;, &#39;swift-evolution@swift.org&#39;)">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt; Consider a relatively-common init pattern:<br>
&gt;<br>
&gt; class SomeViewController: UIViewController {<br>
&gt;<br>
&gt;    // MARK: Properties<br>
&gt;<br>
&gt;    private var videoPlayer: AVPlayer<br>
&gt;    private var videoPlayerLayer: AVPlayerLayer<br>
&gt;<br>
&gt;    // MARK: - Object Lifecycle<br>
&gt;<br>
&gt;    override init(nibName: String?, bundle nibBundle: NSBundle?) {<br>
&gt;        super.init(nibName: nibName, bundle: nibBundle)<br>
&gt;<br>
&gt;        commonInitialization()<br>
&gt;    }<br>
&gt;<br>
&gt;    required init?(coder decoder: NSCoder) {<br>
&gt;        super.init(coder: decoder)<br>
&gt;<br>
&gt;        commonInitialization()<br>
&gt;    }<br>
&gt;<br>
&gt;    private func commonInitialization() {<br>
&gt;        videoPlayer = AVPlayer(...)<br>
&gt;        videoPlayerLayer = AVPlayerLayer(player: videoPlayer)<br>
&gt;    }<br>
&gt;<br>
&gt; }<br>
&gt;<br>
&gt; This does not work. Both properties are non-optional, and the compiler complains that they are not initialized in either init method. It seems rather common to want a single point of contact regarding object initialization, regardless of the path taken to initialize that object. Ideally, objects could all be funneled to one designated initializer, but this isn’t always the case.<br>
&gt;<br>
&gt; What are people’s thoughts about either a specialized function that is always called at the very end of each object’s lifecycle OR some sort of attribute for a function that hints that the compiler should follow it if called in an init function to check for property initialization?<br>
&gt;<br>
&gt; func commonInit() {<br>
&gt;<br>
&gt; }<br>
&gt;<br>
&gt; or<br>
&gt;<br>
&gt; @extend_init private func commonInitialization() {<br>
&gt;<br>
&gt; }<br>
&gt; _______________________________________________<br>
&gt; swift-evolution mailing list<br>
&gt; <a href="javascript:;" onclick="_e(event, &#39;cvml&#39;, &#39;swift-evolution@swift.org&#39;)">swift-evolution@swift.org</a><br>
&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-evolution" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
<br>
_______________________________________________<br>
swift-evolution mailing list<br>
<a href="javascript:;" onclick="_e(event, &#39;cvml&#39;, &#39;swift-evolution@swift.org&#39;)">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
</blockquote></div><br><br>-- <br>-- Howard.<br>