文章目錄
- 引言
- I、編譯相關問題
- 1.1 為什么我下載demo后,在xcode12中允許報錯:library not found for -lAXIndicatorView;請問怎么解決?
引言
匯總本博客精品資源相關問題和解決方案(持續更新)
I、編譯相關問題
1.1 為什么我下載demo后,在xcode12中允許報錯:library not found for -lAXIndicatorView;請問怎么解決?

原因:這是找不到 CocoaPods庫 AXIndicatorView,是 AXWebViewController庫依賴于它


- 解決方法: 你更新 pod ‘AXWebViewController’ 即可,
1、只更新指定的庫,其它庫忽略:
pod update AXWebViewController --verbose --repo-update
2、pod update會更新所有的類別庫,獲取最新版本的類別庫
cocoapods 用法文章:https://blog.csdn.net/z929118967/article/details/103830017
exit 0% ? retail git:(develop) ? cat ~/bin/knpod
#!/bin/sh
#該命令只安裝新添加的庫,已更新的庫忽略
pod install --verbose --no-repo-update
#該命令只更新指定的庫,其它庫忽略
#pod update 庫名 --verbose --no-repo-update
exit 0% ? retail git:(develop) ?
轉載請註明出處,本文鏈接:https://www.uj5u.com/qita/271290.html
標籤:其他
