skip to Main Content

Xcode – WKWebView show content wrong frame in old project

I have an old iOS project using Objective C. When I add a WKWebView to a ViewController NSURL *url = [NSURL URLWithString:@"https://www.google.com"]; WKWebViewConfiguration *theConfiguration = [[WKWebViewConfiguration alloc] init]; _webView = [[WKWebView alloc] initWithFrame:CGRectZero configuration:theConfiguration]; [self.view addSubview:_webView]; self.webView.translatesAutoresizingMaskIntoConstraints = NO; [NSLayoutConstraint…

VIEW QUESTION

Xcode – Google Admob Sdk 6.0.0 "not found for architecture arm64" error

Xcode Error: Undefined symbols for architecture arm64: "_GADURequestInterstitial", referenced from: _Externs_GADURequestInterstitial_m77D58C1021B0E1A9320F3326857B18C58380315E in GoogleMobileAds.iOS.o (maybe you meant: _Externs_GADURequestInterstitial_m77D58C1021B0E1A9320F3326857B18C58380315E) ld: symbol(s) not found for architecture arm64 Podfile: source 'https://github.com/CocoaPods/Specs.git' source 'https://github.com/CocoaPods/Specs' platform :ios, '11.0' target 'UnityFramework' do pod 'Firebase/Analytics', '7.11.0' pod 'Firebase/Core',…

VIEW QUESTION

Xcode – How to fix issue of cycle in dependencies between targets 'BVLinearGrandient' and 'FBReactNativeSpec'?

Getting error in react-native project as ahead. Cycle in dependencies between targets 'BVLinearGradient' and 'FBReactNativeSpec'; building could produce unreliable results. Cycle path: BVLinearGradient → React → React-RCTAnimation → FBReactNativeSpec → BVLinearGradient Cycle details: → Target 'BVLinearGradient' has link command with…

VIEW QUESTION
Back To Top
Search