There are two issues when using XCFramework for inter-framework dependencies with Objective-C compatibility which did not cause any problems when creating normal frameworks. It seems that the XCFramework issues can only be resolved when targeting iOS 13.0.
It would be quite convenient to have these issues resolved in order to distribute libraries compiled and bundled as XCFrameworks without sacrificing backwards compatibility for any iOS version older than iOS 13.
In order to demonstrate the two issues just build the DerivedFramework
target with Xcode 11.0. The sample project can be found here: GitHub - schiewe/XCFrameworkIssue
Issue 1) XCFrameworkIssue/DerivedClass.swift at f84ec25145f63f93badbe845a282bb21e18967eb · schiewe/XCFrameworkIssue · GitHub causes a Method cannot be marked @objc because the type of the parameter cannot be represented in Objective-C
error.
Issue 2) XCFrameworkIssue/DerivedClass.swift at f84ec25145f63f93badbe845a282bb21e18967eb · schiewe/XCFrameworkIssue · GitHub causes a '@objc' instance method in extension of subclass of 'BaseClass' requires iOS 13.0.0
error.
It seems like these issues are compiler bugs which will hopefully be fixed but it might also be a "feature".
What do you think?