We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
swift项目用cocoapods引用WXDevtool,然后在bridging-header.h中导入WXDevtool,#import <WXDevtool/WXDevTool.h>,但是出现Missing submodule 'WXDevtool.WXDevTool',但是#import <WXDevtool/WXDevtool.h>后一个WXDevtool的T小写就正常编译,但是我同事用前者才正常编译。
Missing submodule 'WXDevtool.WXDevTool'
#import <WXDevtool/WXDevtool.h>
T
查阅源码发现只有WXDevtool.h文件,但是WXDebugDomain.h、WXDebugDomainController.h都使用了小写的WXDevtool.h,其他多个文件引用了大写的WXDevTool.h,神奇的是这个项目居然能正常编译。
将WXDebugDomain.h、WXDebugDomainController.h的WXDevtool.h改成大写WXDevTool.h,这样#import <WXDevtool/WXDevTool.h>引用就正常了
WXDevtool.h
WXDevTool.h
#import <WXDevtool/WXDevTool.h>
The text was updated successfully, but these errors were encountered:
4a47569
Fix /issues/30
7fd8ef5
No branches or pull requests
swift项目用cocoapods引用WXDevtool,然后在bridging-header.h中导入WXDevtool,#import <WXDevtool/WXDevTool.h>,但是出现
Missing submodule 'WXDevtool.WXDevTool'
,但是#import <WXDevtool/WXDevtool.h>
后一个WXDevtool的T
小写就正常编译,但是我同事用前者才正常编译。查阅源码发现只有WXDevtool.h文件,但是WXDebugDomain.h、WXDebugDomainController.h都使用了小写的WXDevtool.h,其他多个文件引用了大写的WXDevTool.h,神奇的是这个项目居然能正常编译。
将WXDebugDomain.h、WXDebugDomainController.h的
WXDevtool.h
改成大写WXDevTool.h
,这样#import <WXDevtool/WXDevTool.h>
引用就正常了The text was updated successfully, but these errors were encountered: