GO FURTHER, FASTER: Try the Swift Career Accelerator today! >>

Can a function call a method inside a class?

Forums > macOS

I have a general function that it is not in any class. Is it possible for that function call to a method that is inside a class?

Simplified here:

func func1() {
    //do something and then:
    //func2()
}

class ViewController: NSViewController {
    override func viewDidLoad() {
        super.viewDidLoad()

    }

    func func2() {
        print ("content of func 2")
    }
}

4      

If:

  1. you have a reference to a specific instance of that class, or
  2. the function you are calling is a class function.
import Foundation

class ThingClass {
    func doSomething() {
        print("do do do")
    }

    class func doSomethingElse() {
        print("hello!")
    }
}

func callFunction(on thing: ThingClass) {
    thing.doSomething()
}

func callClassFunction() {
    ThingClass.doSomethingElse()
}

let thing = ThingClass()
callFunction(on: thing)

callClassFunction()

4      

Hacking with Swift is sponsored by Essential Developer.

SPONSORED Join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer! Hurry up because it'll be available only until September 29th.

Click to save your spot

Sponsor Hacking with Swift and reach the world's largest Swift community!

Archived topic

This topic has been closed due to inactivity, so you can't reply. Please create a new topic if you need to.

All interactions here are governed by our code of conduct.

 
Unknown user

You are not logged in

Log in or create account
 

Link copied to your pasteboard.