ios9
This app is not allowed to query for scheme tel
I’ve got the same mistake! The thing is that using phone calls with URL schemes doesn’t require a special key in Info.plist. The answer is- in simulator, this will not work, you need to test in device. The simulator doesn’t have carrier service.
Timer.scheduledTimer Swift 3 pre-iOS 10 compatibility
Solved using Timer.scheduledTimer(timeInterval: 1, target: self, selector: #selector(self.updateTime), userInfo: nil, repeats: true)
UIAlertController tint color defaults to blue on highlight
This is a known Bug, see https://openradar.appspot.com/22209332 To fix it, reapply the tint color in the Completion handler. Here’s my Swift Solution, you will be able to adapt it easily for ObjC: alertController.view.tintColor = UIColor.redColor() // apply 1st time to prevent flicker from Blue to Red when displaying navigationController?.presentViewController(alertController, animated: true, completion: { // Bugfix: … Read more
Detect which app is in foreground on iOS9 without jailbreak
Unfortunately, I was looking for a similar solution and have come to the conclusion that, at least at this point in time, there are no known methods that will allow you to determine app usage on iOS. Even the MDM providers such as Good, Airwatch, MobileIron, etc. don’t seem to be able to do this. … Read more
UICollectionView iOS 9 issue on project with RTL languages support
I was in a similar situation and found a solution for this. If you are using swift, add the following snippet to your project, and it will make sure that the bounds.origin always follows leading edge of the collection view. extension UICollectionViewFlowLayout { open override var flipsHorizontallyInOppositeLayoutDirection: Bool { return true } } If you … Read more
Screen zooms in when a Bootstrap modal is opened on iOS 9 Safari
The following code fixed the issue for me (and some other people -> see GitHub link): body { padding-right: 0px !important } .modal-open { overflow-y: auto; } Source: https://github.com/jschr/bootstrap-modal/issues/64#issuecomment-55794181