688,528 questions
0
votes
0
answers
4
views
iOS and Focus on Search Form on a Webpage: Unwanted Enlargement of the whole page
I have a form field of the type "search" on a valid* page:
<search>
<form action=https://cse.google.com/cse method=get target=_blank>
<input type=hidden name=cx ...
0
votes
0
answers
6
views
UITextView in input bar does not stay attached to keyboard after dismissal
I’m building a chat feature for my iOS app with a custom input bar (UITextView and "Send" button) that stays attached to the keyboard. When the user types, the input bar behaves as expected ...
-2
votes
0
answers
18
views
TCC_CRASHING_DUE_TO_PRIVACY_VIOLATION
We have received a crash report from AppStore connect / Xcode, TCC_CRASHING_DUE_TO_PRIVACY_VIOLATION on an iPhone 12 Pro running iOS 18.1 (unfortunately, we don't know the user and how did they get ...
0
votes
0
answers
8
views
Crash inside of Vision framework during VNImageRequestHandler use
I've been dealing with a puzzling issue for some time now, and I’m hoping someone here might have insights or suggestions.
The Problem: We’re observing an occasional crash in our app that seems to ...
-1
votes
0
answers
12
views
Issues with app-ads.txt Verification in Google AdMob
I’m encountering an issue with app-ads.txt verification in Google AdMob. I selected 'Verify App' in 'App Verification'. Despite following all the steps and confirming that the file is properly set up, ...
-2
votes
0
answers
25
views
build an interactive map application [closed]
I would like to develop a mobile application that provides the user with a detailed, geo-located interactive map of a specific area. The goal is to accurately locate the user and provide a pre-defined ...
-1
votes
0
answers
15
views
How can I test my Flutter code on an iOS emulator using Android Studio while working on a Windows machine?
In Android Studio, I am testing my Flutter code on an Android emulator, but I want to test it on iOS as well. How can I do this on a Windows machine?
If you're testing your Flutter code on an Android ...
0
votes
0
answers
12
views
Only-data messages being collapsed and dropped in iOS
I want to send multiple data messages to my flutter app. I was working with notifications as they were sent in all states (foreground, background, terminated) but found that they are being collapsed. ...
1
vote
0
answers
25
views
ld: framework 'FirebaseCore' not found
I have a kmm app that uses Firebase.
In the android project, the packages are found in the build process, the problem is with the ios app.
When I try to build the iOS app, I receive the error:
> ...
1
vote
0
answers
36
views
Creating a .a static library using C#/dotnet
I would like to use some of my C# code in an XCode project by compiling my .net 9 class library into a static .a library (using NativeAOT and everything that is required).
I have researched quite a ...
0
votes
0
answers
29
views
Why does my App freeze when declaring a State var of Type Date()?
I wanted to add a functionality to my App to store different Times (hour:minute) in an array of my SwiftData Model. And then to also add and remove items from this array. I ran into two problems.
The ...
0
votes
0
answers
25
views
Problem displaying the name of my number blocking app since iOS 18.2
I am writing an application to block spam calls on my mobile and since iOS 18.2 I encounter a problem, it is that in my call log instead of the name of my application, I have something else that ...
0
votes
0
answers
17
views
Expo Camera saving video using createAssetAsync not working on iOS only. ERR_UNSUPPORTED_ASSET_TYPE for .mov file
I am using Expo in React Native, and I want the user to record videos using the camera and save it to the phone. Everything is working fine on Android but on iOS, the createAssetAsync call is failing ...
-4
votes
0
answers
23
views
Is opengl thread safe? [closed]
I have two threads sharing the same eglContext. ThreadA(a video decoder) writes data to a textureId while ThreadB uses the textureId to do rendering. In such case, does Opengl ensure synchronization?
0
votes
1
answer
43
views
Iterating Over an Swift OrderedDictionary Initialized from a JSON
This is a followup question to this StackOverflow post I made, but now I'm trying to iterate over the menu field in the JSON to display all the menu options and allergens in SwiftUI.
I have this ...