Questions tagged [ios-extensions]

App Extensions for iOS development.

App Extensions for iOS development. App extensions give users access to your app’s functionality and content throughout iOS 8 and OS X Yosemite.

Starting in iOS 8.0 and OS X v10.10, an app extension lets you extend custom functionality and content beyond your app and make it available to users while they’re using other apps or the system. You create an app extension to enable a specific task; after users get your extension, they can use it to perform that task in a variety of contexts

Source: Apple App Extensions Document

iOS and OS X define several types of app extensions, each of which is tied to an area of the system, such as:

  • Share
  • Today
  • Photo Editing
  • CustomKeyboard
  • File Provider
  • Document Provider
  • Actions
  • Finder Sync

Please refer Here for more information:

350 questions
0
votes
1 answer

Broadcast Extension with ReplayKit Xamarin iOS not working

I'm trying to add a broadcast extension to a Xamarin iOS app but the extension is not visible when I want to start a broadcast from either in the app or the control center. I added both a BroadcastUploadExtension as a BroadcastUpload UI Extension to…
Jørgen
  • 2,157
  • 1
  • 23
  • 24
0
votes
1 answer

Fullscreen in Action extension iOS13

I have an action extension which should modify a picture via the native Foto app. Unfortunately, with iOS13 it always opens in the new cards look and while I have tried a lot of things I could not get rid of it. In particular, I am setting…
dieterdreist
  • 159
  • 1
  • 8
0
votes
1 answer

iOS Broadcast extension crash randomly when I try to convert buffer samples to UIImage

I am trying to develop broadcast extension to make screen recording. My path is get CMSampleBufferRef from extension, check the type if it is video convert to UIImage and then share with container app via MMWormhole. So far I can able to do it. But…
0
votes
1 answer

Custom Views in today widget stack on each other instead of one under the other

I'm having an issue i can't figure out. I need to build a widget and i have two custom views (Right now using the same custom view) The issue is that for some reason they stack on each other (I can see that in the first print i have on sub view and…
Erez
  • 1,933
  • 5
  • 29
  • 56
0
votes
0 answers

How can I share data between my iOS app and third-party apps?

I would like to share some strings from my app to other apps. For example: A third-party app implements my library and my library gets some strings from my ios app. Can I use App Extensions for this? Or what is the best practice for this?
just
  • 1,900
  • 4
  • 25
  • 46
0
votes
0 answers

Display name For File provider extension

I would like to know how to modify the display name programatically on a file provider extension as shown in the image below How to add this "Personal"
0
votes
2 answers

What is the file size limit in temporary directory in iOS?

I am trying to save an image of size 7.9MB downloaded from here. But at line 'try data.write...' the extension crashes and I get this in console. kernel EXC_RESOURCE -> Notification Extension[3137] exceeded mem limit: ActiveHard 12 MB…
0
votes
0 answers

Xamarin.iOS One Signal Notification Extension Service

I have been trying to implement the notification badge count that One Signal provides. I follow their tutorial https://documentation.onesignal.com/docs/xamarin-sdk-setup#section-5-ios-add-the-notification-extension-service And I also registered the…
0
votes
1 answer

How to check the “Allow Full Access” is enabled in iOS 11?

How to check the “Allow Full Access” is enabled in iOS 11? I have tried multiple methods which do not seem to be working in iOS 10 or iOS 11. Here is one that I tried: func hasFullAccess() -> Bool { var hasFullAccess = false if…
Niall Kiddle
  • 1,477
  • 1
  • 16
  • 35
0
votes
0 answers

iOS : Extensions crash not being reported

I have a network extension and it is crashing after some usage.I think its a memory issue.Is there any tool that can report extension crashes as well? I want to be sure about the reason of crash. PS: Extension is running in 'release' mode. I have…
Desert Rose
  • 3,376
  • 1
  • 30
  • 36
0
votes
1 answer

How do I export text from iOS Notes app to my app?

I know this is possible and is something many big apps do, but I can't figure out among UTIs, extensions, UIActivityTypes, etc. which spell I need to use for this in particular. I'm trying to add my app to the list of apps that appear when you hit…
KRA2008
  • 121
  • 1
  • 11
0
votes
2 answers

Unable to run app on simulator

When I try to run the project in simulator, I get the error: Failed to create plugin placeholder for …
Teja Nandamuri
  • 11,045
  • 6
  • 57
  • 109
0
votes
1 answer

How to share Parse login session with iOS extension?

When writing an iOS extension for an app, is it possible to share the app's current Parse login session with the iOS extension? iOS extensions are bundled with iOS apps but run in separate containers. So when the user logged in on the app, the…
Manuel
  • 14,274
  • 6
  • 57
  • 130
0
votes
1 answer

Disable push notification for specific time interval iOS

Is it possible to disable (not getting/Showing) the push notification via app. I know that, we can register or unregister for push notifications at any time, but in my application user can choose specific time-range in which he wants to get the…
Ankush
  • 2,405
  • 3
  • 22
  • 45
0
votes
1 answer

Share Extension not showing up from apps other than system apps

I am creating new share extension for my iOS 11 supported app. My share extension is working 100% fine for 'Photos' app as well as 'Files' app. But when i am testing the same app for all other apps apart from System apps. It is not showing my share…
Mehul Thakkar
  • 12,440
  • 10
  • 52
  • 81