Questions tagged [ios11.2]
48 questions
44
votes
4 answers
iOS UINavigationBar button remains faded after segue back
In my app I have multiple view controllers, and most have a right-hand-side UIBarButtonItem with direct "show" segue actions attached.
Having segued to another view and then pressed the '< Back' button, the original button item remains faded out,…

Alnitak
- 334,560
- 70
- 407
- 495
6
votes
6 answers
iOS 11.2 beta released, but not a corresponding Xcode beta
I've just installed iOS 11.2 Beta and downloaded the latest Xcode (which is 9.1 - beta 2. 9B46).
But when I try to run the app on the device it says it doesn't have the necessary support files.
So how am I supposed to develop with 11.2 beta if…

Gruntcakes
- 37,738
- 44
- 184
- 378
5
votes
2 answers
Calc is not working on iOS 11.2.1 safari when using percentage and pixels
I have something as simple as a class
.left {
left: calc(50% - 200px);
}
but elements with this class don't move left at all.
If I change it to only percentage it works:
.left {
left: calc(50%);
}
and it is not the minus or plus cause adding…

thnksfrthmmrs
- 96
- 7
5
votes
1 answer
UIBarButtonItem will be always highlight when I click it
- (void)viewDidLoad {
[super viewDidLoad];
self.title = @"这是个bug?->";
self.navigationController.navigationBar.barTintColor = [UIColor colorWithRed:68/255.0 green:155/255.0 blue:235/255.0 alpha:1.0];
…

ame017
- 53
- 3
5
votes
0 answers
UISplitViewController calling viewWillDisappear(_:) before the view is loaded at launch on iOS 11.2
I have an app with a UISplitViewController as the initial controller, and it has both a master and a detail view controller (embedded in UINavigationControllers) as its child view controllers, laid out in Interface Builder. The split view…

jsblau
- 81
- 7
4
votes
0 answers
Crashed: MRAVConcreteRoutingDiscoverySession
Recently, our app collected many of these crashes through the fabric (most of them crashed on 11.2
Crashed: MRAVConcreteRoutingDiscoverySession
EXC_BAD_ACCESS KERN_INVALID_ADDRESS 0x00000004d407bec8

Mahesh Etreddy
- 41
- 4
4
votes
4 answers
UIImagePickerControllerOriginalImage is not working in ios 11.2.1
In what cases will I be sad? if I have set allowEditing as false.
func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [String : Any]) {
if let selectedImage =…

Nikhil Manapure
- 3,748
- 2
- 30
- 55
4
votes
1 answer
Accessibility Inspector doesn't work on iOS 11.2
it seems the accessibility inspector is not working well with iOS 11.2. Is there a known workaround or maybe apple introduced a new switch?
Thanks!
iOS 11.2
iOS 11.0.1 is working correctly

Ted
- 22,696
- 11
- 95
- 109
4
votes
2 answers
Autoplay muted video iOS 11.2
I am currently working on a page with videos on it. Since iOS 11.2, it seems they disabled autoplay muted inlineplaying completely without a user gesture.
Has anyone experienced this issue too?
This all wouldn't be such a mess if there would be a…

BitBender
- 82
- 1
- 7
3
votes
1 answer
imageview.transform inside UIButton subclass strange behaviour
I had made an UIButton subclass and had added an IBInspectable property that rotates the imageView inside UIButton. In InterfaceBuilder all seems to work perfect but at runtime, it's behaving strangely.
Here's my code
MyButton.m
@implementation…

Manish Malviya
- 546
- 2
- 15
3
votes
2 answers
Upgrading App to Swift 4 and iOS 11 - TwitterKit Issues
I'm trying to upgrade my app to latest iOS support. I've added TwitterKit via CocoaPods, and placed header in my Bridge Header. However; I am getting an error saying:
Use of unresolved identified 'Twitter' - did you mean 'TWTRTTwitter'.
func…

Michael Rowe
- 870
- 2
- 11
- 27
3
votes
2 answers
iOS11 Cordova Angular 4 wrap breaking SecurityError: history.replaceState()
I have an angular 4 application wrapped with cordova that was working perfectly fine before iOS11.1
Upgrading the phone to iOS11.1 I now receive the error
Error: Uncaught (in promise): SecurityError (DOM Exception 18): Blocked attempt to use…

Daniel Swiegers
- 4,631
- 1
- 8
- 13
3
votes
1 answer
iOS 11.2 - Search Controller Bar background is clear when inside Navigation Bar with Large Title
so I just updated to iOS 11.2, and now my UISearchController's search bar is messed up. When search is active, the background behind the search bar area goes invisible / clear / transparent.
I built a test project to make sure I wasn't crazy. Here's…

beebcon
- 6,893
- 5
- 25
- 27
3
votes
0 answers
"present view controller" not working only on iOS 11.2
This code works perfectly fine on anything before iOS 11.2:
let vc = UIStoryboard(name: "Main", bundle: nil).instantiateViewController(withIdentifier: "loginView")
self.present(vc, animated: true, completion:nil)
The view is being…

moyoteg
- 351
- 3
- 11
2
votes
0 answers
hard to tap buttons with xcode 9 and ios 11
I am facing a weird issue to tap UIButtons with Xcode 9 and IOS 11.2. The buttons are in a UIView and are simple call to action buttons such as submit and cancel.
When I click on these buttons, the action is triggered only when I click to the left…

Ron
- 389
- 1
- 4
- 16