some external tools like when interfaces (protocol...
# ios
d
some external tools like when interfaces (protocols) extend NSObject - is there a way to declare interfaces in the common sourceSet such that they extend NSObject when targeting iOS?
r
You could define an expected interface in common which would be actual to NSObjectProtocol in ios sources and use that as parent of all your interfaces
d
clever