Questions tagged [ios8-extension]

Refers to the extensions added in iOS 8; may include Today extensions (widgets), Share extensions, Action extensions, photo editing extensions, custom keyboard extensions, document provider extensions. For Apple Watch extensions, use [watchkit].

Refers to the extensions added in iOS 8, which may include Today extensions (widgets), Share extensions, Action extensions, photo editing extensions, custom keyboard extensions, document provider extensions.

For more information, see Apple's Extensions documentation.

199 questions
0
votes
1 answer

iOS Action Extension not being installed

Yesterday I added the first action extension to my (iOS) app. Everything worked well (after I figured out how to configure the NSExtension dict). Today I added the second action extension (to the same app) and configured it almost the same way…
floschliep
  • 513
  • 5
  • 14
0
votes
1 answer

iOS8 app extension, tried deleting from project

I was looking at the different share extensions for my project but realized it's not quite what I needed, so I deleted the folder and found other installations in build phases I had to delete. But in my info.Plist there was still NSExtension and…
0
votes
0 answers

Disable iPhone auto lock from iOS 8 custom keyboard

Is there a way to disable the auto screen lock from an iOS8 custom keyboard? [UIApplication sharedApplication].idleTimerDisabled = YES; is not supported in App Extensions.
flopr
  • 450
  • 4
  • 23
0
votes
1 answer

Opening external app from custom keyboard ios 8

I wanted to know how I can open an external app from a custom keyboard in iOS 8? is it by example possible to open Facebook, or post a Facebook message from a custom keyboard, if yes, how can I achieve this? Thank you, joe
joe
  • 1
  • 1
  • 2
0
votes
1 answer

iOS8 - Custom Keyboard Extension(Allow Full access)

I am working on keyboard extension app with iOS8.It is working fine.But for a while.I am having problem with Allow Full access(disable).Initially i have set All full access is "ON" in my device settings.Then i have no problems with keyboard…
Thangavel
  • 216
  • 2
  • 10
0
votes
0 answers

iPhone 6 resizing issue

I am creating a custom keyboard, and it looks great on the iphone 5 and 5S, but when it shows up on the iphone 6 and 6plus (in the simulator) it cuts off at the iphone 5 size. I assume this is because the size of my .xib file is 320x240, but I…
SomeGuy
  • 3,725
  • 3
  • 19
  • 23
0
votes
1 answer

Running iOS Action Extension without Xcode

I may be overlooking something simple but I've recently built an action extension in iOS 8.1 b2 on Xcode 6.1 GM 2. If I run the extension through Xcode (selecting the scheme and running; it asks me to choose an app to open the extension in which I…
arvinkx
  • 164
  • 1
  • 11
0
votes
1 answer

How to put Image in Custom Keyboard?

I am a iOS application developer. I am now working with iOS8 custom keyboard. I have created a custom keyboard with custom view. I can put their button and view. I am unable to put image or animated image(GIF) over there. Can any one please help me…
Bis
  • 713
  • 1
  • 5
  • 7
0
votes
1 answer

How to increase keyboard height like SwiftKey?

The height of a typical keyboard extension in iOS 8 is like the ELDeveloperKeyboard at right . How to increase the height of the keyboard similar to Swiftkey at left?
ohho
  • 50,879
  • 75
  • 256
  • 383
0
votes
1 answer

Swift: Can't set UIButton image programmatically with error: 'NSString' not a subtype of 'UIImage'

I am trying to set a button image programmatically, and no one seems to have problems with this but me. My Code: func moreOptionsKeyMap(){ for x in self.mainView.subviews as [UIButton] { let image = UIImage(named:…
SomeGuy
  • 3,725
  • 3
  • 19
  • 23
0
votes
2 answers

How to make iOS button taps require less accuracy (Swift)

I am currently making a custom keyboard for iOS 8, and I came across the problem that it is impossible to type. I found that you have to be far too accurate and press your finger exactly on the keys. This is obviously not the case for the system…
SomeGuy
  • 3,725
  • 3
  • 19
  • 23
0
votes
1 answer

iOS 8 Action Extension for selected text in Safari

I can't get Action Extensions to work with selected text in safari. Inside Activation rules there is the rule to allow text, but the extension is not available when I select the text.
Eric
  • 57
  • 6
0
votes
1 answer

Can we invoke an iOS8 extension using javascript?

I am working on an iOS8 extension in which I need to invoke the extension using a button on a website. Is it possible to invoke the extension without using the Share button on Safari?
Nikant
  • 915
  • 1
  • 8
  • 18
0
votes
0 answers

Launch 3rd party apps from links (IE: Facebook "App Links")

pretty new to this stuff - but have a basic question: I'm looking for a native iOS method that does what Facebook's App Links does. Put it simply, our news organizations publishes breaking news alerts to Twitter and Facebook with a link to the…
-1
votes
1 answer

How to include an Objective-C Extension in my Swift ActivityViewController?

I have included the 1Password extension in my Browser app by following this question. However, I already have an iOS 8 Share Sheet (ActivityViewController) on my app and would like to include the 1Password inside this share sheet inside of using…
1 2 3
13
14