Questions tagged [ios11.3]

29 questions
63
votes
10 answers

Model is running iOS 10.2 (14C92), which may not be supported by this version of Xcode

I am facing this error, i am done with research on that. I conclude the result, i need one file for device support 10.2(14C92) Please share that file. GoTo: Right click on Xcode 8 or Newer version of your Xcode, select "Show Package Contents",…
Piyush Sanepara
  • 1,417
  • 2
  • 18
  • 23
37
votes
0 answers

What is `Can't find variable: loadHomepageTiles` error on iOS 11.3

I recently came across this error message: Can't find variable: loadHomepageTiles on our error logs from one of our angularjs 1.6 mobile applications. This seems to only happen on iOS devices running 11.3 based on the error logs. We don't have any…
Mokky Miah
  • 1,213
  • 2
  • 11
  • 29
13
votes
2 answers

Prevent iOS 11.3 overflow bouncing

I've been making use of the preventDefault technique on the touchmove event since now, when I noticed it doesn't seem to work anymore on iOS 11.3, for neither Safari, nor Chrome or Firefox: document.ontouchmove = function(event){ …
Alvaro
  • 40,778
  • 30
  • 164
  • 336
8
votes
2 answers

WebCore bmalloc::IsoAllocator crashes in iOS 11.3

I am getting crash like this in fabric crashlytics: WebCore bmalloc::IsoAllocator >::allocateSlow(bool) Any clue to resolve this issue?
Scorpian Alive
  • 734
  • 8
  • 21
8
votes
2 answers

WKWebview getAllCookies crash in iOS 11.3

We have recently migrated to WKWebview. We have added a listener for cookie change, to get the updated cookies and update our own store. - (void)cookiesDidChangeInCookieStore:(WKHTTPCookieStore *)cookieStore { [cookieStore…
7
votes
1 answer

App Transport Security issue with AVAudioPlayer loading local file objective-C, XCode 9

I have an app which loads a bundled m4a audio file as a local resource and it has worked well for many years now. I'm updating the app to iOS 11.3/XCode 9.3 and it is now failing on iPad (works on iPhone) when I press my play button: 2018-05-13…
6
votes
1 answer

Push notification is not working when app is in background (minimized) - iOS

I'm newbie to Swift, I am creating chat application, I need to send notification when app is in foreground or minimized. But I am not getting the notification when app is minimized (it works when USB is connected. Enabled Remote…
5
votes
1 answer

PWA standalone issue while redirection in ios 11.3

When redirecting PWA app to another site(which is login page of our site)opens in safari browser not in standalone mode in ios11.3.(We are using parent.href in javascript to redirect to another site for authentication. This is working fine for older…
4
votes
2 answers

How to disable viewport zooming in iOS 11.3 safari?

I ve tried all (yes all!!!) the solutions from this question and nothing seems to be working with iOS 11.3? Did someone had success with preventing pinch to zoom with ios 11.3? PS: I know that there are good reasons not to prevent pinch zooming... .…
Friedrich Siever
  • 437
  • 7
  • 14
4
votes
0 answers

How to achieve greater accuracy in measuring distance using ARKit?

I have optimized ARular app according to my requirement. I have to calculate width of the objects in vertical planes. Both apps (ARular and my modified app) calculates width of the object within close range (<10 feet) with minimum error…
Bhushan B
  • 2,470
  • 4
  • 26
  • 38
4
votes
0 answers

XCcode9.3/iOS11.3 fmdb/sqlite will be crash

XCcode9.3 run project when First time In Debug, fmdb/sqlite crashes most of the time. some info is: "BUG IN CLIENT OF sqlite3.dylib: illegal multi-threaded access to database connection" Did some changes for iOS11.3?
lauren1573
  • 293
  • 1
  • 2
  • 9
3
votes
0 answers

API request failed on iOS 11.3/11.4 when called through VPN connection

VPN connection created successfully on iOS 10 and also API request executes successfully. Also, VPN connection created successfully on iOS 11.3 and 11.4 but API request get failed and showing below error: 2018-06-06 15:50:42.366512+0800…
Harshal Wani
  • 2,249
  • 2
  • 26
  • 41
3
votes
4 answers

Work around to WKWebView http POST no longer sending parameters in iOS 11.3

My application has two views : a login view awaiting user credentials the main view containing the webview When the user inputs his credentials, a native asynchronous POST method is sent to the server. If the credentials are valid, the user will…
RandomFly
  • 55
  • 1
  • 7
2
votes
3 answers

Can't set httpBody on WKWebView POST request in iOS11.3

following code var webView: WKWebView! override func loadView() { super.loadView() self.webView = WKWebView(frame: .zero) view = webView } override func viewDidLoad() { super.viewDidLoad() var request = URLRequest(url:…
Ryuichi Aida
  • 51
  • 1
  • 6
2
votes
0 answers

IOS 11.3 PWA clears login token on startup

Unfortunately it seems IOS 11.3 progressive web apps start completely fresh every time its opened from the home screen. Because of this the user is having to login each time the app is opened, has anyone found a workaround to retain login…
Riley Davidson
  • 307
  • 3
  • 7
1
2