Questions tagged [ios11]

iOS 11 is the eleventh version of Apple's iOS mobile operating system. It was announced at the company's Apple Worldwide Developers Conference (WWDC) on June 05, 2017. The ios11 tag should be used for questions specific to Apple's iOS 11 operating system. General iOS questions should use the ios tag.

API and Developer Changes

  • Easily create Augmented Reality experiences using .
  • Take advantage of on-device Machine Learning using the new framework.
  • Efficiently perform complex tasks on images, videos, and pixel buffers with high accuracy through the new Vision () framework.
  • now supports additional intent types, including notes, reminders, and QR codes.
  • Expanded to work with more types of products; a non-commercial hardware spec is now available for developers / hobbyists.
  • AirPlay 2 () protocol introduced
  • System-wide Drag and Drop features for iPad, allows apps to share content in new ways
  • App Store redesigned with a new curated content section; a tab just for apps; a tab only for games; and new app pages.

Major User-Facing Changes

  • Multitasking redesign for iPad, now includes a Dock
  • Improved Notes app includes a document scanner (take photo and autocorrect perspective) and handwriting recognition
  • Redesigned Control Center, Notification Center
  • Apple Maps now supports indoor floor plans for places like malls and airports (limited). Lane guidance is now available for turn-by-turn directions.
2532 questions
94
votes
23 answers

iOS 11 disable password autofill accessory view option?

As of now I would like to opt out of the new option iOS 11 gives, that is to suggest passwords in the app. When I run the app on iOS 11 I get the autofill option on top of the keyboard and my username and password textfield don't even show up. So,…
zumzum
  • 17,984
  • 26
  • 111
  • 172
93
votes
1 answer

iOS 11: ATS (App Transport Security) no longer accepts custom anchor certs?

I am leasing a self signed certificate using NSMutableURLRequest and when the certificate is anchored using a custom certificate with SecTrustSetAnchorCertificates IOS 11 fails with the following error message: refreshPreferences: HangTracerEnabled:…
Wayne
  • 3,359
  • 3
  • 30
  • 50
91
votes
19 answers

UISearchBar increases navigation bar height in iOS 11

I have my UISearchBar being part of the navigation bar like: let searchBar = UISearchBar() //some more configuration to the search bar ..... navigationItem.titleView = searchBar After updating to iOS 11 something weird happened to the search…
radioaktiv
  • 2,437
  • 4
  • 27
  • 36
85
votes
14 answers

iOS 11 Safari bootstrap modal text area outside of cursor

With iOS 11 safari, input textbox cursor are outside of input textbox. We did not get why it is having this problem. As you can see my focused text box is email text input but my cursor is outside of it. This only happens with iOS 11 Safari
kekkeme
  • 942
  • 1
  • 7
  • 10
78
votes
11 answers

iOS 11 navigation bar height customizing

Now in iOS 11, the sizeThatFits method is not called from UINavigationBar subclasses. Changing the frame of UINavigationBar causes glitches and wrong insets. So, any ideas how to customize navbar height now?
77
votes
32 answers

Xcode: "This app could not be installed at this time."

Working with my first application for learning purposes. It goes well but has met into a problem with Xcode. When I try to run the application on the iPhone simulator this message always pops up "This app could not be installed at this time." What…
JoakimSjo
  • 1,786
  • 1
  • 10
  • 16
77
votes
6 answers

iOS11 WKWebview crash due to NSInvalidUnarchiveOperationException

With ObjectiveC I am developing a SingleView app targeting iOS 11 having one view controller/view. In the Main.storyboard on top of the view I've dropped a WebKit View (WKWebView). I am seeing a crash in both the Simulator and on an iPhone 6…
dmind
  • 815
  • 1
  • 6
  • 9
77
votes
15 answers

iOS 11 navigationItem.titleView Width Not Set

Seeing a behavior on iOS11 with a navigationItem.titleView where the width of the titleView is not the full width of the screen. I have a custom view that I set as the titleView. Previous to iOS11 the view would fill the navigation bar area. But iOS…
gngrwzrd
  • 5,902
  • 4
  • 43
  • 56
70
votes
8 answers

iOS 11 SearchBar in NavigationBar

With iOS 11 Apple has redesigned the UISearchBar by making the corners rounder and the height bigger. Adding a UISearchBar to the navigationBar is pretty simple by just setting it as the titleView of the navigationItem using navigationItem.titleView…
PatrickDotStar
  • 1,654
  • 1
  • 19
  • 20
67
votes
8 answers

UILabel wrong word wrap in iOS 11

I have problem with application using XIBs without autolayout. I don't know if this is important information. I have UILabel with 2 lines using word wrap. In iOS 10 word wrap was working correctly, and first line contained one word + special…
studentbi
  • 805
  • 1
  • 6
  • 6
64
votes
6 answers

Use the increased navigation-bar title in iOS 11

iOS 11 Beta 1 uses the increased navigation-bar title for almost all system-apps (it started doing this in iOS 10 and the Music app). I am wondering if Apple has a public API for this coming in iOS 11, or whether it will stay private for now. The…
Hans Knöchel
  • 11,422
  • 8
  • 28
  • 49
60
votes
8 answers

iOS 11 large-title navigation bar not collapsing

The Apple guy in the What's new in Cocoa Touch WWDC video said that the new large-title navigation bar will magically hook into the top-level scroll view of the underlying view controller and collapse/expand itself automatically while scrolling up…
Tamás Zahola
  • 9,271
  • 4
  • 34
  • 46
59
votes
9 answers

UISearchController iOS 11 Customization

I had been using the following code prior to iOS 11 to customize the appearance of the UISearchController search bar: var searchController = UISearchController(searchResultsController:…
Alexander MacLeod
  • 2,026
  • 3
  • 14
  • 22
56
votes
6 answers

iPhone X hide home indicator on view controller

I have a view controller that takes up the whole screen from top to bottom. I would like to hide the home bar indicator on the bottom of the screen on iPhone X devices. How can I do this in iOS 11?
Vlad
  • 5,727
  • 3
  • 38
  • 59
55
votes
15 answers

Simultaneous accesses to 0x1c0a7f0f8, but modification requires exclusive access error on Xcode 9 beta 4

my project uses both Objective-C and Swift code. When a user logs in, it calls a set of apis for user preference, I have a DataCoordinator.swift class which schedules the API operation and I make this calls from UserDetailViewController.m class to…
Francis F
  • 3,157
  • 3
  • 41
  • 79