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()
}
}
I make xcframework. This code inside it. I link this xcframework to application and use it, but there is no convenience init for MyButton class. XCode 11.3