356 questions
2
votes
0
answers
129
views
iOS 26 Password Autofill extension not showing in Settings after Xcode install
I’m developing an iOS Password Autofill (Credential Provider) extension for iOS 26.
My main app and extension are installed via Xcode on my iPhone, but the extension does not appear in Settings → ...
-2
votes
1
answer
49
views
How can I have my full app open from the Share sheet?
I'd like to add a share extension to my app. The extension would appear when users share a photo in the Photos app (and, ideally, Safari). If you tapped my app icon on the share sheet, iOS would pass ...
0
votes
1
answer
202
views
Compose Multiplatform UI in iOS Share Extension shows blank screen
I'm trying to use Compose Multiplatform UI in an iOS Share Extension, but the Compose content only shows a blank white screen. Here's what I've observed:
The UIViewController is sized correctly (the ...
1
vote
0
answers
345
views
React Native: Undefined symbol: _OBJC_CLASS_$_RCTRootView - Linker command failed with exit code 1 (use -v to see invocation)
Description
I am trying to create iOS Intent Extension on a React Native project. The requirement is to render the UI on React Native. I have followed the step here https://reactnative.dev/docs/...
0
votes
0
answers
222
views
OpenReadAsync returns ex Access to the path is denied with sharing target xamarin ios
I'm implementing sharing target in my Xamarin.iOS project.
All the described behavior works on simulator, but fails on real device.
The OpenReadAsync function is already used and working when I select ...
4
votes
1
answer
433
views
Difference between NSExtensionActivationSupportsWebPageWithMaxCount and NSExtensionActivationSupportsWebURLWithMaxCount?
If my app want to support sharing from Safari browser, I will include the following 2 activation rules
NSExtensionActivationSupportsWebPageWithMaxCount
NSExtensionActivationSupportsWebURLWithMaxCount
&...
1
vote
2
answers
393
views
HTTP Request Fails Trying to Report Unwanted Communication Report via API
I created an Unwanted Communication Reporting Extension as per described here: https://developer.apple.com/documentation/sms_and_call_reporting/sms_and_call_spam_reporting
Followed the instructions ...
2
votes
0
answers
103
views
Installing Keyboard Extension changes the iOS system language to Corsican based on bundle ID CFBundleIdentifier
I have built an iOS keyboard extension, before it is installed the system prefered language is "English" like so:
After installing the keyboard extension the system language is set to "...
1
vote
0
answers
270
views
iOS Shortcut icon not showing up when shared to watch
I'm finishing up an app extension that provides shortcut support. Shortcuts are working great, and the app's icon shows up in the shortcut on the iPhone.
The problem is that the icon doesn't bubble up ...
1
vote
1
answer
800
views
iOS 15 message extension is not called
I'm trying to develop a message filtering extension for iOS. My steps as follows:
Create a new project.
Go to File -> Target -> Add Message Filter App Extension, enter a name ...
0
votes
1
answer
357
views
iOS 14: UI extension crashes upon startup
I am developing the UI extension, it works correctly with iOS 15, but crashes upon startup on devices running iOS 14. To my understanding, the presented log implies that crash occurs before the ...
0
votes
1
answer
208
views
HttpClient request crashes on a Xamarin Notification Service Extensions iOS
I'm trying to request some data from an API using HttpClient in DidReceiveNotificationRequest method (Xamarin iOS Notification Service Extensions project).
When the GetAsync (HttpClient) the extension ...
2
votes
0
answers
294
views
xCode 13 Build issue with iOS App Clip Extension
I have migrated from Xcode 12.4 to Xcode 13.2. My App is having App Clip extension bundled. My App and App Clip Extension having one framework i.e. FrameworkA. It's separately copied to both targets, ...
1
vote
0
answers
993
views
iOS15: How to add a custom activity button to an SFSafariViewController?
In iOS15, there is a new API to SFSafariViewController.Configuration that suggest one can add a custom button on the SafariViewController UI. This blogpost explains this in greater detail, under &...
1
vote
0
answers
373
views
How do I manually trigger a specific app's share extension?
When I share a file via iOS' UIActivityViewController, I can press the "More" button and see a bunch of apps that I can send my file to. My question is: how can I add a button in my app that ...
0
votes
1
answer
332
views
IOS share extension to launch parent app as chrome extension does
Looking to find a solution where I can launch parent app using IOS extension, some says it's not possible but chrome extension does it. Like clicking a url and opening it into my app.
1
vote
1
answer
278
views
Show UIAlertController from app extension
I'm working on a message filter extension for iOS and I am kind of stuck. I would like to be able to display an UIAlertController whenever a new message is received and it's classified as junk.
The ...
1
vote
2
answers
1k
views
iOS Share extension not showing for URLs and Text
So I have made a hybrid application using react-native and I had no issues setting up share for android, but in iOS I am not able to make my application appear on the share list.
I need Apple Music or ...
2
votes
1
answer
444
views
Swift: How to Reload Content Blocker
I'm using the "Content Blocker Extension" in my project, and have been informed that I have to call SFContentBlockerManager.reloadContentBlockerWithIdentifier() in my main app to reload the ...
0
votes
1
answer
195
views
How to utilize Xamarin Forms Global Styles in iOS Extension
I've got a theme switcher in my Xamarin Forms app that works great using a set of static Resource files. However, my app also has an iOS extension and the theming breaks down at that point.
In the ...
3
votes
1
answer
1k
views
Programmatically hide iOS widgets?
I have developed an iOS 14 desktop widget for an application and I would like to only make it available to some users. Is there a way to disable widgets the first time your application runs so that ...
2
votes
0
answers
82
views
Is it possible to add Facebook SDK to my iOS Widget Extension?
Following the guide provided by Facebook
I'm trying to add Facebook SDK to use analytics for my widget extension
Seems not easy because the SDK asks to use CFBundleURLSchemes and AppDelegate.swift ...
0
votes
1
answer
680
views
EXC_BREAKPOINT crash in iOS Extension when debug with some breakpoint
When I debug the code in iOS Extension. I face some crash with EXC_BREAKPOINT
What did I do?
Run my APP with Xcode 11.5.
Start debugging for extension: Debug -> Attach to Process by PID or name -...
3
votes
1
answer
3k
views
How can I use IPC from an app extension to asynchronously send information to the containing app on iOS?
I would like to use inter-process communication in my app extension to notify its containing app when the extension makes changes to the app group's UserDefaults database. Currently, there appears to ...
2
votes
1
answer
323
views
NSPersistentCloudKitContainer written to by multiple processes
I have an app using iCloud and Core Data through NSPersistentCloudKitContainer. The container and related code are in a shared framework and most things are running fine. In addition to the app itself,...