你如何删除Podfile.lock?
How do you delete Podfile.lock?
Xcode 最近更新了,我的代码在 STPAPIClient.m:
中给出了这个错误
Incompatible block pointer types sending '__strong STPAPIResponseBlock _Nonnull' (aka 'void (^__strong)(__strong ResponseType, NSHTTPURLResponse *__strong, NSError *__strong)') to parameter of type 'void (^)(STPSource *__strong, NSHTTPURLResponse *__strong, NSError *__strong)'
编辑:我找到了podfile.lock,但每次我删除它和pod install时,我检查项目目录并且Podfile.lock仍然存在。有谁知道如何删除它?谢谢!
切勿直接修改 Podfile.lock。它由 pod install
生成。如果你想删除一个 Pod,编辑 Podfile,删除你想要的 Pod,然后重新运行 pod install
.
如果您删除了一些软件包并且它仍然显示在 podfile.lock 中。
只需在您的终端中转到 project/ios_directory,然后 运行 一项一项地执行命令。
=> pod clean
=> pod install
Xcode 最近更新了,我的代码在 STPAPIClient.m:
中给出了这个错误Incompatible block pointer types sending '__strong STPAPIResponseBlock _Nonnull' (aka 'void (^__strong)(__strong ResponseType, NSHTTPURLResponse *__strong, NSError *__strong)') to parameter of type 'void (^)(STPSource *__strong, NSHTTPURLResponse *__strong, NSError *__strong)'
编辑:我找到了podfile.lock,但每次我删除它和pod install时,我检查项目目录并且Podfile.lock仍然存在。有谁知道如何删除它?谢谢!
切勿直接修改 Podfile.lock。它由 pod install
生成。如果你想删除一个 Pod,编辑 Podfile,删除你想要的 Pod,然后重新运行 pod install
.
如果您删除了一些软件包并且它仍然显示在 podfile.lock 中。
只需在您的终端中转到 project/ios_directory,然后 运行 一项一项地执行命令。
=> pod clean
=> pod install