Questions tagged [ios8-today-widget]

Refers to the "Today" widget in the notifications center of iOS devices.

Refers to the "Today" widget in the notifications center of iOS devices.

232 questions
0
votes
1 answer

self.extensionContext!.openURL open app but calls no method

I am trying to wire the Today extensions to my app by using the following piece of code: override func tableView(tableView: UITableView, accessoryButtonTappedForRowWithIndexPath indexPath: NSIndexPath) { let…
Fabrizio Bartolomucci
  • 4,948
  • 8
  • 43
  • 75
0
votes
1 answer

widgetPerformUpdateWithCompletionHandler called just once

I am implementing a today extension where I take some time to load the needed information, yet I found widgetPerformUpdateWithCompletionHandler is called just once finding no data and never afterwards to find the updated data; this is the piece of…
Fabrizio Bartolomucci
  • 4,948
  • 8
  • 43
  • 75
0
votes
1 answer

iOS widget not working on few iPhone5S

We are facing very weird issue. We have implemented the iOS8 widget and its working fine with iPhone5, iPhone5C, iPhone6 but it's not working with iPhone5S. Sometime its working with iOS 8.2 and sometimes it suddenly stop working. I am not able to…
Pranay
  • 372
  • 1
  • 10
0
votes
1 answer

Today Extension deleting data in sqlite

I have added a Today Extension in my existing app and setup a separate core data stack(reusing the same code which is used to setup core data for the main app). My app data gets deleted when I run the Today extension as if setting up of Today core…
Puneet Sharma
  • 9,369
  • 1
  • 27
  • 33
0
votes
1 answer

Add App Group entitlement

I'm trying to build an existing application that provides a Today widget. Unfortunately I cannot make the app to communicate with the widget. In the Capabilities section I get the following errors I've installed appropriate provisioning profiles…
marvin_yorke
  • 3,469
  • 4
  • 25
  • 35
0
votes
1 answer

Cannot create an NSPersistentStoreCoordinator with a nil model Today Extension

I have a today extension which uses the same model as the main app and I have had it working before, but now it no longer works. I get the error * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: 'Cannot create an…
Clip
  • 3,018
  • 8
  • 42
  • 77
0
votes
1 answer

iOS Today Extension keeps crashing on iPhone, not in simulator

I'm trying to build an iOS Today Extension that shows three images with some text. In the simulator it runs fine, but when I run it on my iPhone, it flashes three times and then displays Unable to Load. What am I doing…
0
votes
1 answer

Using RSSParser for Today Extension Widget

I am trying to get latest data from a RSS URL and show its content in Today Widget extension , with RSSParser but the problem is it returns null ! here is my codes : - (void)viewDidLoad { [super viewDidLoad]; NSURLRequest *req =…
iOS.Lover
  • 5,923
  • 21
  • 90
  • 162
0
votes
1 answer

iOS Today Widget Seems to Install only on iOS 8.3 Devices, not 8.1 or 8.2

Just created a Today Widget and all seems to be good (on ios 8.3) devices. It installs and runs fine from XCODE 6.3.1. But on iOS 8.2 or 8.1 devices, the Today Widget does not install / run even though XCODE says it is running. If a breakpoint…
ort11
  • 3,359
  • 4
  • 36
  • 69
0
votes
1 answer

Reachability for Today Widget

I got a Notification Center Widget that contains some UISwitches that work only if connected to a Wi-Fi network. I tried to do this with Reachability (that works in the normal app code), like this #import "Reachability.h" Reachability…
Hugo
  • 33
  • 8
0
votes
1 answer

Today's widget height dynamically - iOS

I'm working on an application that uses today's widget where I need to show some table view with nearly 50 rows.but the screen fits only for 10 rows.So I need to increase the height of widget as per my table height.I've done a lot of research on…
ayinala
  • 185
  • 1
  • 12
0
votes
1 answer

UIButton height unintentionally increased - Widget - iOS 8

I am developing an iOS 8 app with a Notification center widget. One problem I am having is that when I first open the widget, the UIButtons (which are in one UIView) are stretched vertically (even though I did not specify this). When the user closes…
Supertecnoboff
  • 6,406
  • 11
  • 57
  • 98
0
votes
0 answers

Is it possible to perform Action through Today Extension without opening Host App?

I have created an host app that is fetching post from server and displaying the same. I have also created an Today Extension and showing top most 5 under Today Section Of Notification. Now I want to provide delete post functionality directly from…
yadav
  • 103
  • 1
  • 8
0
votes
1 answer

Today Extension iOS

I am developing today extension.I am displaying tableview cell within my extension.It is working very well. But the problem is that, i have also given swipe to delete functionalaity in UITableViewcell, but this is not working. does swipe feature…
yadav
  • 103
  • 1
  • 8
0
votes
2 answers

iOS Detect Today Extension Orientation

I'm trying to detect a Today Extension's orientation, but none of the typical methods seem to work. I've tried the following: [[UIApplication sharedApplication] statusBarOrientation] == UIInterfaceOrientationLandscapeLeft; [UIDevice…
user1752054
  • 372
  • 4
  • 17