Skip to content

Files

Latest commit

 

History

History
42 lines (27 loc) · 734 Bytes

strong_iboutlet.md

File metadata and controls

42 lines (27 loc) · 734 Bytes

Pattern: @IBOutlet declared as weak

Issue: -

Description

@IBOutlets shouldn't be declared as weak.

Examples of correct code:

class ViewController: UIViewController {
    @IBOutlet var label: UILabel?
}


class ViewController: UIViewController {
    weak var label: UILabel?
}

Examples of incorrect code:

class ViewController: UIViewController {
    @IBOutlet weak var label: UILabel?
}


class ViewController: UIViewController {
    @IBOutlet unowned ↓var label: UILabel!
}


class ViewController: UIViewController {
    @IBOutlet weak ↓var textField: UITextField?
}

Further Reading