Post

Replies

Boosts

Views

Activity

Reply to iOS 26 Keyboard Toolbar with Menu Buttons: Menu appears above hidden toolbar (instead of taking up it's space)
I found one workaround, it seems inputAccessoryView is buggy, instead it works by adding the toolbar directly to the same view: view.addSubview(toolbar) NSLayoutConstraint.activate([ toolbar.leadingAnchor.constraint(equalTo: view.leadingAnchor), toolbar.trailingAnchor.constraint(equalTo: view.trailingAnchor), toolbar.bottomAnchor.constraint(equalTo: view.keyboardLayoutGuide.topAnchor) ])
Topic: UI Frameworks SubTopic: UIKit Tags:
Oct ’25
Reply to com.apple.webinspector.allow Causes Crash
I also just ran into this problem. Here Apple documents that this entitlement can be added, but then the app doesn't start anymore: https://webkit.org/web-inspector/enabling-web-inspector/ The only solution is to add the device UUID to your provisioning profile and distribute the development version.
Topic: Safari & Web SubTopic: General Tags:
Aug ’21