import UIKit
public class MyButton: UIButton {}
public extension UIButton {
var someProperty: Int { 1 } // visible in xcframework
convenience init(label: String) { // NOT visible in xcframework
self.init()
}
}
我制作 xcframework。这段代码在里面。我将此 xcframework 链接到应用程序并使用它,但 MyButton 类没有方便的 init。XCode 11.3