TEAM LICENSES: Save money and learn new skills through a Hacking with Swift+ team license >>

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 String Catalog.

SPONSORED Get accurate app localizations in minutes using AI. Choose your languages & receive translations for 40+ markets!

Localize My App

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.