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
0 answers

How do I show "sharing/action" extensions in iOS?

I'm not trying to create a custom extension - I just want to know how to show the app extensions popup. In my app, someone will tap a custom UIButton and I don't know what code I need to use to show the popup for sharing/actions. All the…
Adama
  • 1,101
  • 8
  • 26
0
votes
1 answer

iOS:How to run framework code only in extension not containing app

Framework is a good way to share code between Containing App and Extension. Sometimes I want some code to run only when target is Containing App not Extension, or vice versa. Is there something like TARGET_OS_EXTENSION ?
keywind
  • 1,135
  • 14
  • 24
0
votes
1 answer

Accessing KeychainItems in action extension

I'm building an action extension for my iOS app. However, I'm having some real difficulties with handling user data. In my app I'm storing the user's username and password like this: KeychainItemWrapper *keychainItem = [[KeychainItemWrapper alloc]…
user4334509
  • 125
  • 2
  • 10
-1
votes
1 answer

How to show a progress bar or a loader on post action of share extension

I created a share extension for my application in Swift. Now I have to call an API and send the title and image to the server. I am able to call the API from the didSelectPost method of ShareViewController but it is taking some time to complete the…
Somenath
  • 19
  • 1
  • 6
-1
votes
1 answer

UITableViewDelegate and UITableviewDataSource : Cannot override a non-dynamic class declaration from an extension - Swift 4

I am trying to override the UITableViewDelegate methods inside extension.The base class has already implemented the methods. Please find the details below: Base Class: class BaseTableViewController:UITableViewDelegate,UITableViewDataSource{ …
iOS
  • 5,450
  • 5
  • 23
  • 25
1 2 3
23
24