Questions tagged [ios10.3.2]

15 questions
6
votes
1 answer

How I know which contacts have iMessage?

I have iPhone 6. Is there any app on apple app store that can show me which of my contacts have IOS iMessage? There is some information on google but for checking one by one contact. I want to check all contacts in one shot
Devdas
  • 69
  • 1
  • 2
  • 10
5
votes
0 answers

Only on iOS 10.3.2. Error: The operation could not be completed. (NSURLErrorDomain error -999.)

iOS Version on which the bug is reproducable: 10.3.2 Code runs correctly on iOS 10.3.1 and earlier Whenever I try to load a youtube video url on UIWebView, I got the following error: The operation could not be completed. (NSURLErrorDomain error…
Malloc
  • 15,434
  • 34
  • 105
  • 192
3
votes
1 answer

How to close the system alert in iOS10 simulator, Xcode 9, UITests

I have the issue that I could not close the notification, location, photo access permission alert in iOS10 simulator, Xcode 9, UITests, but it works well in iOS11 simulator. I found the thread that discuss about the similar issue, but there is not…
Alex Cheng
  • 829
  • 8
  • 20
2
votes
1 answer

Angular 4.3.1 on Safari iOS 10.3.4: TypeError null is not an object (evaluating 'n[o].outlets')

I am working on a Angular 4.3.1 app. The app is working mostly fine except for the Safari Browser on iOS 10.3.2. I have the bug-tracking software "Sentry" installed and I tried my best to get my head around the two issues provided there. I am asking…
1
vote
0 answers

WKWebview snapshot configuration not supported in iOS 9

I m getting crash when I try to take snapshot of wkwebview in iOS 9.0,can anyone please help me to resolve this issue? _webView takeSnapshotWithConfiguration:wkSnapshotConfig completionHandler:^(UIImage * _Nullable snapshotImage, NSError * _Nullable…
Sushmitha
  • 11
  • 2
1
vote
0 answers

iOS 10.3.2 : WebView is rendering differently as compared to Safari in same device

HTML input tag is not rendering properly. Input Tag is used like this : It works properly in Safari and allows to select only single image but with WebView it allows user to…
1
vote
1 answer

UITesting in iOS: tap() method doesn't work properly

I am facing a strange problem with UITesting in Swift under iOS 10.3.2 and Xcode 8.3.3 . I am running a simple test inside my app which should tap and verify every single row inside a TableView (is the Settings view of my application so every single…
1
vote
0 answers

Network connection lost while switching from wifi to 3g

I have run into the strange problem, both, Reachability and NSURLConnection showing error (No internet connection/Network connection lost) after switching from wifi to 3g. Although all apps are running fine after switching to 3g. I double check if…
Ketan Shinde
  • 1,847
  • 4
  • 18
  • 38
0
votes
1 answer

UIImage returns an empty image path from the gallery only in iOS 10.3.2

I have a problem in react-native, I'm creating a component in swift in order to do image processing. In my code, a picker selects the image from the gallery and returns the link of the image to me and then opens this image in my native code. My code…
SNW
  • 1
  • 1
0
votes
1 answer

MDM Profile not installed in iOS 10.3.2

MDM Profile failed to install only in iOS 10.3.2 I checked the device logs and there is no specific error. This is the device log. I am able to install the profile in other devices. Checked in 2 devices with iOS 11.2.6 and one device with…
Hulk Man
  • 153
  • 1
  • 15
0
votes
0 answers

Privacy - Microphone Usage Description permission not appear in iOS 10.3.3

Currently I am developing audio recording app which record the audio hence I set microphone permission in info.plist file so record audion permission alert displaying in iOS 10.3.2 but its not appearing in iOS 10.3.3 devices . Code to request…
Rushabh
  • 3,208
  • 5
  • 28
  • 51
0
votes
1 answer

Kurento iOS room video not shown on iOS 10.3

I am using kurento ios code from the url https://github.com/nubomediaTI/Kurento-iOS It works perfectly on iOS 9.3.5. But in iOS 10.3.2 the video stream of peer is not shown, like this (https://github.com/nubomediaTI/Kurento-iOS/issues/33). It shows…
Lenin S
  • 5
  • 6
0
votes
0 answers

Lost Connection to "X's iPhones" while capturing photo from back camera on Xcode 8.3 and iOS 10.3.2

in my application there is a facility of capturing photo from both front and rare camera. Both the camera work properly on ios 10.2.1 & less but if I run the application on iOS 10.3.2 and capturing photo from front camera everything work perfectly…
Shashi Ranjan
  • 154
  • 2
  • 12
0
votes
2 answers

iOS Swift 3 app rejected by App Store because of app crash in IPV6 network

My app was rejected by App Store because it crashed in IPV6 network. This happened to me a second time. I have already updated my code to support for IPV6 network and two builds are moved successfully in that code. But now again they raised this…
Kavin Kumar Arumugam
  • 1,792
  • 3
  • 28
  • 47
0
votes
1 answer

ios swift property block setting and getting

in objective-c we do @property (strong, nonatomic) void(^Name)(id input, id selectedListItem); then we set property if (self.Name) { self.Name(self,nil); } for accessing it viewcontroller [classObject setName:^(id input, id…