Hi,
I'm having a hard time with interactively dismissing (swiping down) a view controller that it not nested in a UINavigationController and that has a ScrollView. Instead of swiping down, the scrollview just scrolls.
When I have the view controller nested in a navigation controller, then the system somehow sees that the scroll view is scrolled to the top, and allows the user to pull down the whole view controller.
What is the navigation controller doing here, what I need to re-implement in my view controller?
Thanks for any hints!
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Hi,
I'm trying to build a Notification Service Extension. When I run the application, I get the error:
Embedded binary's bundle identifier is not prefixed with the parent app's bundle identifier.
Embedded Binary Bundle Identifier:(null)
Parent App Bundle Identifier: ##.#####.#####
I have no idea why the identifier of the embedded bundle could be null. In the General tab of the extension, I have set it so that it has a common prefix with the parent app. In the Info tab, the value for Bundle Identifier is $(PRODUCT_BUNDLE_IDENTIFIER), and I cannot change that to anything else. Whenever I build, it goes back to this.
Xcode Version 13.0
Any ideas?
Has the MIDI Thru Connection API completely stopped working on iOS 14? I have two apps relying on that API, both are not able to route any MIDI anymore. The API does not give any errors when calling MIDIThruConnectionCreate.
Any hints?
Hi,I'm trying to use the new scrollEdgeAppearance in order to have a transparent navigation bar background when the table view is scrolled to the top. However, this seems only to work when I use large titles. Is this intended?navigationItem.title = "Test title"
navigationItem.largeTitleDisplayMode = .never // <- This seems to break it
let standardAppearance = UINavigationBarAppearance()
standardAppearance.configureWithDefaultBackground()
navigationItem.standardAppearance = standardAppearance
// This appearance is never applied:
let scrollEdgeAppearance = UINavigationBarAppearance()
scrollEdgeAppearance.configureWithTransparentBackground()
navigationItem.scrollEdgeAppearance = scrollEdgeAppearanceThanks!