objective c - Force Product-Swift.h to update -
i'm using both swift , objective-c code in app. problem is, after updating class thats written in swift, trying use class written in objective-c, changes have not updated @ 'product-swift.h' file!
is there way force update manually?
ok found it!
so init method not generated product-swift.h file, here is:
internal init(transitionnavigator : transitionnavigator,bundleselected bundle : bundle) {
the problem 'transitionnavigator' file written in swift too, , once marked class @objc :
@objc class transitionnavigator {
it solved it!
Comments
Post a Comment