688,599 questions
0
votes
0
answers
17
views
'UqudoSDK/UqudoSDK.h' file not found
I wanted to report an issue I encountered with uqudosdk-react-native while building on React Native 0.80.0 and Xcode 16.4. The Error was "'UqudoSDK/UqudoSDK.h' file not found". Posting this ...
-1
votes
0
answers
18
views
iOS App Upload Fails: "No suitable application records were found" for Square In-App Payments SDK Bundle Identifier
Problem
I'm unable to upload my iOS app to App Store Connect due to a bundle identifier validation error for the Square In-App Payments SDK. The error
message is:
No suitable application records ...
1
vote
1
answer
20
views
Seek to the actual first frame of a video whose timestamps don’t start at zero (AVPlayer / AVAsset)
I’m working on an iOS app that loads videos using AVPlayer, and I’ve run into a common issue: some videos have timestamps that don’t start at zero.
For example, you can reproduce this by taking any ...
0
votes
0
answers
13
views
Processor Trace cannot profile this process without proper permission
I get:
"Processor Trace cannot profile this process without proper
permission"
error message in Xcode Instruments 26.0.1 when profiling with Processor Trace Instrument.
The message details:...
0
votes
1
answer
10
views
How to support iOS Passkeys when clients use their own custom server domains that can’t be added to Associated Domains?
I’m implementing Passkeys in an iOS app using AuthenticationServices.
To enable Passkeys, we need to add Associated Domains in Xcode (under com.apple.developer.associated-domains).
These domains are ...
0
votes
0
answers
43
views
Auto-update a MAUI application from the store [closed]
I have my .NET 9 MAUI application published on all the stores (Apple Store, Google Play and Microsoft Store). It is cool!
Now, I pushed a new version of the app in all the stores, but none of the ...
0
votes
0
answers
35
views
iOS 26: performSegue() found nil on iPad
self.performSegue(withIdentifier: "showModifyMeldungSegue", sender: self)
throws "Thread 1: Fatal error: Unexpectedly found nil while implicitly unwrapping an Optional value".
This ...
0
votes
0
answers
12
views
React-Native error : 'FirebaseCoreInternal.modulemap' not found
Pod install successfully on running ios from xcode
Xcode build gives the following error:
/Users/apple/Library/Developer/Xcode/DerivedData/ZoTok-ctycpbrbiefsflgukwbhdxspvspa/Build/Intermediates....
0
votes
0
answers
15
views
Library not loaded: @rpath/DTBiOSSDK.framework/DTBiOSSDK
I have one xcode work space contain two iOS app projects and one shared lib framework. Recently, we are trying to SPM to import another SDK into our projects. I have set the package dependency in the ...
0
votes
0
answers
45
views
Apple mapkit route function does not work in China [closed]
I’m developing an iOS app using MapKit to calculate travel times between two coordinates.
Everything works perfectly when I test with coordinates in the US, Japan, or Hong Kong if my network is ...
0
votes
0
answers
51
views
iOS 26 Liquid Glass - Without any Blur - Possible?
In iOS 26, you can easily create a Liquid Glass element like this:
let glassView = UIVisualEffectView(effect: UIGlassEffect(style: .clear))
glassView.frame = CGRect(x: 100, y: 200, width: 200, ...
0
votes
0
answers
18
views
mDNS (multicast_dns) not discovering Android TV on real iOS device but works in iOS Simulator
I’m building a Flutter app that discovers Android TVs on the local network using mDNS via the multicast_dns
Problem
On the iOS Simulator, it successfully discovers Android TVs advertising ...
0
votes
1
answer
49
views
How to make Custom TipKit View with .popoverTip in iOS SwiftUI
I want like this "Next" button to be on left side and 4 indicators on right side kind of TipKit view, which should be popover on the existing view; how to achieve this?
I am able to create ...
0
votes
0
answers
33
views
Need help fixing iOS build error: “Unable to find a destination matching the provided destination specifier”
I’m having trouble launching my Flutter app on an iOS simulator. Here’s the error I get in my terminal:
bachirtraore@Mac billetfacile_controller % open -a Simulator
bachirtraore@Mac ...
0
votes
1
answer
61
views
Why can not scroll the images? [closed]
I create two class from video lesson:
import SwiftUI
struct ScrollImage: View {
let image: ImageResource
var body: some View {
Image(image)
.resizable()
....