6 questions from the last 30 days
0
votes
0
answers
19
views
Why is the Linphone SDK waking up when it receives a regular push notification?
I'm working on a Linphone-based application (SDK), and I'm encountering an issue related to re-registration behaviour after receiving regular application push notifications.
Problem Description:
The ...
0
votes
0
answers
54
views
UITabBar backgroundColor and backgroundImage has no effect in iOS 26
UITabBarAppearance Background Not Applying
UITabBarAppearance *appearance = UITabBarAppearance.alloc.init;
[appearance.stackedLayoutAppearance.normal setTitleTextAttributes:@{...
-4
votes
0
answers
57
views
I am trying to fetch voip token from apple in react native but cannot seem to do so, I am building on xcode cloud as my mac is quite old. xcode is 15 [closed]
I’m trying to implement VoIP push notifications in my React Native app using react-native-voip-push-notification. Regular push notifications (FCM & Apple notifications) are working, but the VoIP ...
0
votes
1
answer
63
views
NSURLSession — How to upload a large file and download a large file in background in the same request?
I’m using NSURLSession with a background configuration to upload a large file, and the server immediately returns another large file in the same request (I cannot change the server behavior). I only ...
0
votes
0
answers
82
views
How to correctly call an iOS completionHandler block from Delphi without crashing?
I’m trying to implement this iOS delegate method in Delphi:
- (void)URLSession:(NSURLSession *)session
task:(NSURLSessionTask *)task willBeginDelayedRequest:(NSURLRequest *)request ...
-2
votes
0
answers
73
views
Configuring a NSTextView so it behaves as a NSTextField (same background and focus ring)? [duplicate]
Has someone managed to configure a NSTextView in AppKit in Objective-C so it behave as a NSTextField (same background and focus ring)?
I understand NSTextField cannot manage multiline text editing as ...