0
我創建了一個UIViewController
(TestViewController.swift),它是我在Test.xcodeproj
中創建的,並且想要在另一個abc.xcodeproj
中訪問此TestViewController.swift
及其方法。無法訪問存在於Pod內的ViewController
示例 -
import Test
class abcViewController: TestViewController {
}
我已經在我的項目的波德文件添加abc.xcodeproj
和Test.xcodeproj
。
但我無法繼承abcViewController
中的TestViewController。我想用LEGO模式創建我的項目。
請建議什麼應該是正確的方法。
我在添加公開課時犯了一個錯誤。它使用open。謝謝 – Rajat