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

Can I submit widget to Apple Store without iOS app?

Can I submit widget (Today Extension) to Apple Store without iOS app? Only widget? Is it possible?
Maksym Bilan
  • 197
  • 1
  • 10
1
vote
1 answer

Calling openURL from Today widget opens the app but does not call application:openURL:sourceApplication:annotation:

I set a Today Extension for my containing App. Here is the code: TodayViewController: [self.extensionContext openURL:[NSURL URLWithString:[NSString stringWithFormat:@"idaxiang://action=%ld",(long)aCell.tag]] completionHandler:^(BOOL success)…
KittenYang
  • 11
  • 3
1
vote
0 answers

Auto layout constraints: view disappears in today widget

I ran into this weird issue today: After a clean install, my layout looks okay; a simple view with a button in it: I am using xibs instead of a Storyboard (not my decision :(), and it's rather simple: However, the next time I pull down the…
1
vote
1 answer

Execute function on app controller from today widget button

I need to execute a function (that basically start updating location and distance driven) without opening any view controller (on background) I need the widget to work like a "remote control" of a button inside my app. Then when I open the app, the…
alvarogalia
  • 1,601
  • 2
  • 12
  • 10
1
vote
0 answers

TodayViewController class in iOS Today widget not being read?

My TodayViewController class is implemented as follows: #import "TodayViewController.h" #import @interface TodayViewController () @end @implementation TodayViewController -…
morphatic
  • 7,677
  • 4
  • 47
  • 61
1
vote
1 answer

Memory error when loading an image from a url in iOS today widget

I am trying to load an image from my server in my iOS Today Widget. However, whenever I do that, I get a crash that is because of a "memory error". I think it might be because I programmatically create the UIImageView, but then again that might not…
1
vote
1 answer

Today extension: syncing data with container app

Context I've been playing around with Today Extensions using this example project. The app is quite simple: In the containing app, you have a list of todo items, which you can mark completed In the Today widget, you see the same list, but you can…
1
vote
0 answers

Today's app extension app group issue

I have get stuck in a code sign issue in today’s extension implementation the whole scenario is as follow : I am implementing today’s extension in my existing app which is signed with appId 123456789com.mycomapany.myApp I have a distribution…
Vinod Singh
  • 1,374
  • 14
  • 25
1
vote
1 answer

Swift - Apple Mach-O Linker Error sqlite3 local db

I have as this tutorial presentens added a local db to my project. Within my solution I have two projects one is the main application and the other one is a Today Extension project. When added the SQLlite files (provided from the tutorial) and…
user599807
1
vote
1 answer

Xcode Error When trying to set up today widget

When i created a new today wieget target, the app complains that there is no such framework called 'NotificationCenter.framework' Here are some images of the issue.
nachshon fertel
  • 145
  • 1
  • 1
  • 11
1
vote
0 answers

My Today extension content is empty when I run on my App Scheme

This is my widget scheme. When I run the app, everything is ok, widget is working... ... but why when I change the scheme to my App Scheme then there is no content? There is a message on console: NewOrders[7930:96020] Failed to inherit CoreMedia…
Bartłomiej Semańczyk
  • 59,234
  • 49
  • 233
  • 358
1
vote
0 answers

Today Extension widget freezes when the main app is updated

I am suffering from Today Extension freezing issue when the main app is updated. In detail, I recently found that Today Extension freezes after updating the main app from Crashlytics Beta service. After that, all of touchable things like a button…
Kyokook Hwang
  • 2,682
  • 21
  • 36
1
vote
1 answer

iOS today widget for two trargets in same project

I have a today widget, (that I've successfully localised for specific target), but it only shows for one build target I have, the main version of the app. How can I set it to be available to other (/all) target in the same project?
MatanGold
  • 739
  • 10
  • 18
1
vote
0 answers

Today Extension: Cant reload tableView

I created a today extension/widget. I implemented a table view. If the widget runs and stepped into the viewDidLoad function where I wrote this line of code: tableView.reloaData() the tableView doesn't reload and the next line of code runs. My…
horst
  • 575
  • 1
  • 6
  • 15
1
vote
2 answers

Adding google analytics tracking to my iOS Today Widget

I have in my widget a few buttons and I want to track clicks. Is this possible or even allowed by Apple? I'm have been looking for information but can't find any.
FreeGor
  • 615
  • 13
  • 26