DEV Community

Dattatraya Anarase
Dattatraya Anarase

Posted on

Protected Properties and Methods in Swift - An Alternative

Originally posted on my blog site.

It's always been a quite demand from swift developers to add protected access in Swift's access control. Lot of times it's been asked on stack-overflow that how to write protected methods in swift. But still swift hasn't provided any direct way to do it. Can we really achieve protected access in Swift? Yes, we can!

Apple has already published a blog Access Control and protected in 2014 regarding this demand and how unnecessary it is. But still I believe there are lot of situations in projects where we need to hide some properties and methods from outside classes but only accessible to children. So here's what I have come up with:

//Animal.swift file
class Animal {
    fileprivate var protectedVar: Int = 0
    fileprivate func protectedFunc() {//do stuff}
}

class Dog: Animal {
    func doSomething() {
        protectedVar = 1
        protectedFunc()
    }
}
Enter fullscreen mode Exit fullscreen mode

If we try to access protectedVar or protectedFunc() from outside of Animal.swift file then compiler will throw an error.
To achieve protected access like this only thing we need to keep in mind that children must be declared in same file as parent declared in. Also this approach can not be used while developing libraries, packages or frameworks.

Have you any time stuck searching for protected access in Swift? Then tell me how you got through it in comments below.
Also if you have any other solutions, please post those here or on Twitter @d4ttatraya.

References: Apple's Developer Guide

Top comments (0)