같은 프로젝트 내 다른 파일에 정의된 메서드를 호출하는 방법
//TestIn.swift
class TestClass {
func testMethod() {
print("매개변수가 없는 메소드")
}
}
//TestOut.swift
class Test2Class {
var instance = TestClass()
instance.testMethod() //호출
//Cocoa Touch Class 활용시
let sb = UIStoryboard(name: "Main", bundle: nil)
let vc = sb.instantiateViewController(withIdentifier: "TestClass") as! TestClass
vc.testMethod()
}
[iOS/Swift ] UITableViewCell에서의 타입 캐스팅 (0) | 2022.10.11 |
---|---|
[iOS/Swift ] for ~ in VS forEach (0) | 2022.10.11 |
[iOS] Rest_API (0) | 2022.08.10 |
[iOS] 싱글턴 패턴(in iOS) (0) | 2022.07.26 |
[Swift] D-day 계산을 위한 핵심 코드 설명 (0) | 2022.07.16 |