問題:從2020年4月開始,蘋果將停止接受使用UIWebView API的應用:
ITMS-90809: Deprecated API Usage** - Apple will stop accepting submissions of new apps that use UIWebView APIs starting from April 2020. See https://deve<wbr>loper.apple.<wbr>com/document<wbr>ation/uikit/<wbr>uiwebview for more information.
一、刪除 UIWebView+AFNetworking
- 修改 podFile,
pod 'AFNetworking', '~> 3.2.1', :subspecs => ['Reachability', 'Serialization', 'Security', 'NSURLSession']
- 打開終端進去到項目目錄,輸入命令 :
pod update
- 替換
#import "AFNetworking.h"
#import <AFNetworking/AFHTTPSessionManager.h>
二、刪除項目里所有UIWebView
- 打開終端進去到項目目錄,輸入命令 :
grep -r UIWebView .
檢索出所有的UIWebView。
- 逐行刪除。