336,256 questions
0
votes
0
answers
16
views
Making xFrameworkVersionNumber in Objective-C umbrella header `const` because of concurrency-safe in Swift
Follow up for this question VersionNumber and VersionString in umbrella header is what is the repercussion of changing this line from the autogenerated umbrella header file xFramework.h:
//! Project ...
0
votes
0
answers
37
views
File Provider extension cannot access App Group container despite identical entitlements (macOS Tahoe, local signing)
I have a Tauri/Rust application with a native Swift File Provider extension. Both are configured to use the same App Group, but the extension cannot access the shared continer at all - it can't even ...
-1
votes
0
answers
9
views
How to automate linking a local XCFramework to a ios client app during development?
I am developing an iOS .xcframework and have a separate client app project that I use for testing and integration.
My current workflow is as follows:
I make changes to my framework's source code in ...
-2
votes
0
answers
25
views
Issue in security features in swift [closed]
I'm having trouble getting my Swift code approved on the AppStore, where I have security checks spread across several methods. If one of them returns true, the app assumes there's a debugger tool, an ...
5
votes
0
answers
60
views
Flutter iOS Picture-in-Picture not showing when app goes to background (works only via button)
I'm building an OTT video streaming app using Flutter and the video_player package.
I want to implement Picture-in-Picture (PiP) on iOS.
Flutter doesn’t provide native PiP support for iOS directly, so ...
0
votes
2
answers
74
views
How to Eliminate Form Padding in NavigationStack
I have a form being loaded inside a navigation stack and I'm showing an image and title in the first form section with the code below:
Form {
Section {
VStack {
Image("...
0
votes
0
answers
31
views
MacOS - AppKit + SwiftUI - Liquid Glass Without Any Blur
I've been trying to set up liquid glass effect like on screenshot below and can't figure out how to do it. Tried official documentation methods even with .glassEffect(.clear) but got nothing.
-> ...
1
vote
1
answer
31
views
SwiftUI NavigationStack ToolbarItem shows unwanted circular background behind icon
I am trying to create a simple toolbar button in SwiftUI using NavigationStack, but it always shows an unwanted light circular/rounded background around the icon.
I want to remove the circular ...
0
votes
0
answers
33
views
Extra buttons between search bar and keyboards on iOS 26
I'm having a problem on my search bar on iOS 26 because it started showing extra button when the keyboard is active. On other cases I resolved the issue with the same conditional that I have below but ...
0
votes
1
answer
41
views
How to remove UIScrollEdgeEffect from the UIScrollView in UIKit iOS 26?
In iOS 26 and later, UIScrollView and its subclasses (like UITableView and UICollectionView) use the new UIScrollEdgeEffect instead of the older rubber-banding or glow behavior when reaching the ...
0
votes
0
answers
32
views
Disable bar that appears at the bottom when a WebKit text field is focused
I have an iOS app running on Mac (it's not running through Catalyst, it's the iOS app on Mac). It displays some web content, along with some inputs. I'd like to know how to disable that dark grey bar ...
0
votes
0
answers
13
views
tvOS UITableView shows shadow on top and bottom when manually changing contentOffset
I’m working on a tvOS app using Swift, and I have a UITableView that contains three sections.
For first two sections, each contain a horizontally scrolling UICollectionView.
The last section contains ...
-1
votes
0
answers
42
views
Keyboard cut off issue on iPhone 16 PRO
I have encountered a strange issue in my iOS app. When I open and play a video inside my app and then open the controller where there is an TextField, the keyboard is cut off on the right, as you can ...
0
votes
0
answers
28
views
Cordova bridge not firing after biometric passcode fallback on iOS (device ready / document.ready not triggered)
We are facing an issue in our iOS Cordova hybrid app (WKWebView) during biometric → passcode fallback authentication.
Environment:
Cordova iOS 7.x (WKWebView)
Native plugin handles Face ID / Touch ID ...
1
vote
0
answers
47
views
RealityKit use class vs struct for the component in ECS (Entity-Component-System) [closed]
I noticed that apple's components are typically structs rather than classes. Sometimes even if it needs references to large shared resources, it still uses struct to hold a reference to a class.
For ...