突然发现手机没法和WKWebView联调,手机设置检查了一遍都没问题,xCode,Safari也升级了还是不行。
最后发现iOS16.4有了一些改动。
/*!
@abstract Controls whether this @link WKWebView @/link is inspectable in Web Inspector.
@discussion The default value is NO.
*/
@property (nonatomic, getter=isInspectable) BOOL inspectable NS_SWIFT_NAME(isInspectable) API_AVAILABLE(macos(13.3), ios(16.4));
webview.inspectable = YES;
设置一下就可以了。