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
1
vote
1 answer

Access the keychain from iOS keyboard extension

I wrote some code to share data between an application and an extension. The code works perfectly with "Action Extension" while it fails with "Custom keyboard" extension. Each access to the keychain from the "Custom keyboard" extension ends with…
Sébastien
  • 327
  • 5
  • 15
1
vote
1 answer

Using embedded framework in extension's containing app with deployment target iOS 7.0 and earlier

I'm developing Today Widget Extension for an app with deployment target earlier than iOS 8.0. In apple Extension Programming Guide they recommended to use embedded framework to share code between app extension and its containing app. You can…
Tsahi Deri
  • 571
  • 1
  • 3
  • 14
1
vote
1 answer

Mixing swift and objective-c in WatchKitExtension

I am getting following warnings and errors while in my WatchKit extension: Warning: no rule to process file 'App-Bridging-Header.h' of type sourcecode.c.h for architecture…
Janusz Chudzynski
  • 2,700
  • 3
  • 33
  • 46
1
vote
0 answers

Can you use a location as an activation rule for an iOS application extension?

I am trying to implement an extension for an iOS app that I would like to present with a location. For example, in the maps app, if you tap the share button, a menu comes up with share options (messages, Facebook twitter) and action options (print,…
1
vote
1 answer

iOS share extension disables preview

I am working on a share extension for Safari in iOS. We are using the stock UI from iOS, so extending the SLComposeServiceViewController. I am also using a javascript to read the page content and set some parameters. The UI works fine showing the…
1
vote
0 answers

Is that possible to use Camera in Photo Editing Extension in iOS 8?

I am trying to create a simple Photo editing extension.I want to use custom camera with filters as a extension, but Apple document suggest that photo editing extension use assets from photo library.Is this a limitation of the extension? If not, can…
technerd
  • 14,144
  • 10
  • 61
  • 92
1
vote
2 answers

How to add App Groups iOS 8 Extension?

I am having a strange issue: In the project i am working we have to introduce Share extension. The problem i have now is that the app Groups cannot be added. When i activate it it shows that i have an issue at…
Alexandru Dranca
  • 830
  • 1
  • 7
  • 21
1
vote
0 answers

UIMenuController in keyboard extension

I need to show UIMenuController with 2 actions in my keyboard extension. It must appear when user click on button on collection view's cell (cell.textButton in code) When I'm trying to show it all my keyboard view controller becomes grey, without…
1
vote
0 answers

Adding App Group Capabilities to iOS app

I need to enable App group capabilities to one of my apps. I created a new group from Xcode and selected it, it has automatically added group capabilities to my App ID. But still I see two errors. When I look up my app ID in apple site, I can see…
user88975
  • 1,618
  • 3
  • 19
  • 29
0
votes
0 answers

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 the file via the FilePicker (file type is…
Grounch
  • 375
  • 2
  • 14
0
votes
0 answers

UnwantedCommunicationReportingExtension API calling failing

I want to add UnwantedCommunicationReportingExtension to my iOS app to report calls from Call History. I created UI for that and I can see the report button on Call History and Extention is opening. I have followed every step to make sure…
Faslur Rajah
  • 861
  • 2
  • 10
  • 17
0
votes
0 answers

IOS x Mixpanel: Sending event tracking from extension when app is terminated

Straight to the point: Is it possible to initiate a mixpanel instance, and send a track request from an app extension (i.e Notification Service Extension when received push notification) IF the app is in state: Terminated (swiped away in app…
0
votes
0 answers

iOS Extension Logs Not Appearing In Xcode Console

Main app logs are appearing in the extension logs but as soon as I attach the extension, the Xcode console goes blank and stops outputting anything. It can appear in the mac console app, but I need it to appear in Xcode console. I ran the main app…
0
votes
0 answers

Detect ios safari extension is enabled and allowed on all pages

I am developing an iOS safari extension. Right after the installation and opening the container app, I would like to take the users to a page which shows instructions on how to enable the extension and allow it to run on all pages. Is there a way to…
0
votes
0 answers

How to return status for extension CallKit IOS to React Native

I'm trying return a enable status extension to React Native from Native IOS. But result i received always is null My code: import Foundation import CallKit @objc(CommonFunction) class CommonFunction : NSObject { @objc static func…