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

XCode 6.1.1 - Today extension debug

I have installed new XCode and now I have problem debugging my todays extension (in simulator or device - not working in both of them). Steps from Apple documentation are not working, extension is always hanging on "Waiting to attach". I have also…
Martin Perry
  • 9,232
  • 8
  • 46
  • 114
1
vote
1 answer

Today widget openurl with parameter

I have a Today Widget for my app, it open the containing app while user tap today widget. NSURL *url = [NSURL URLWithString:@"MYAPPNAME://" ]; [self.extensionContext openURL:url completionHandler:nil]; This code works as expected. But now I want…
Anbu Raj
  • 831
  • 2
  • 8
  • 25
1
vote
1 answer

Releasing app without Today extension?

I got a Today extension half done in my project. I don't have to release a half done product to public but also want to keep the same codebase so I can save time on code maintenance. Does anyone know a way to release the app without the Today…
L N
  • 2,856
  • 4
  • 20
  • 30
1
vote
1 answer

iOS Healthkit record custom workout data

I am trying to figure out if recording strength training workouts to Healthkit is possible? From using the app and going through Apple's sdk, i don't see anything which might let me record weight lifting values (weight used, sets, reps etc.). It…
1
vote
1 answer

OSX: Auto layout/constraints not displaying content

Im trying to create a view that has 2 labels in it, with auto layout enabled. Upon running of the app, it adjusts the size of the screen as it would if it had content yet nothing shows up. This is without setting any text programmatically. This is…
Abushawish
  • 1,466
  • 3
  • 20
  • 35
1
vote
1 answer

Today Extension (Widget) not getting updated during app update

I have an app in appstore containing a widget and it works fine. Now when i tried to give an update for the existing widget and tried over installing through Xcode, the app gets updated , but the widget is not getting replaced with the new version.…
user2410022
  • 101
  • 1
  • 5
1
vote
1 answer

Today Widget Extension not Showing Data

I am trying to add a today extension that shows a list from an RSS feed like what part of my app does. My problem is that it is not showing the data. .h #import @class RSSChannel; @interface TodayViewController : UIViewController…
raginggoat
  • 3,570
  • 10
  • 48
  • 108
1
vote
1 answer

iOS Today Extension UITableView

My today extension (RSS Reader on picture) is not showing anything if table view is added (I have tried multiple prototype cells and also dynamically). I am using storyboards. I have been reading several articles and I watched video from WWDC 2014…
Xoroxoxoxoxoso
  • 505
  • 6
  • 17
1
vote
1 answer

Is there a way to remove the gap under my Today Extension

Ok, I'm trying to make todays view extension and I would really like to make it have 77 pixels of height. But no matter what iOS keeps inserting a padding under my top view. Like this: You see, I'm calling setPreferredContentSize passing a height…
André Henrique
  • 167
  • 1
  • 1
  • 9
1
vote
1 answer

Use Parse.com Data in iOS 8 Notification Center widget

I am trying to download a few strings from parse.com inside of a Notification Center widget. Therefore I first need to sign the user in to parse. First I am loading the credentials, which are saved from the app itself in the NSUserDefaults (I know…
1
vote
0 answers

iOS 8 Today Extension- Load UIMapView

I try to add to my 'Today Extension' UIMapView, But after I add the UIMapView to the storyboard the widget view is stuck. If I delete the UIMapView everything works again... Did anyone experience a similar problem? I also tried to write a new…
Guy Kahlon
  • 4,510
  • 4
  • 30
  • 41
1
vote
1 answer

How to access image files in a today notification widget

Is there any kind of restriction when accessing image through widgets extension? I have an image within Widget extension Supporting Files group called pocket.png I want to use this image through by Widget custom view controller and as usual i wrote…
KD.
  • 2,015
  • 3
  • 28
  • 59
1
vote
1 answer

cocoapods in library not found in app extension

I have an app and accompanying extension, with a cocoa touch framework in the same project containing most of the shared code. The problem I'm faced with is that the cocoapods that the framework depends on are not found when compiling the app…
Einherji
  • 203
  • 3
  • 8
1
vote
3 answers

iOS Today View Not Running on Device

I have created my first Today View extension that just displaying some texted it retrieves from a shared NSUserDefaults. It works perfectly and is ready to be shipped based off of how it displays and works through simulator, but when I try to run it…
JLoewy
  • 535
  • 1
  • 4
  • 17
1
vote
1 answer

CoreData extension - 'Use of Undeclared Identifier' when adding model to target

I'm trying to share my CoreData store with my Today extension. I've followed all the posts about creating an app group and adding my dataStore and Models to my extension target. When I do this though, I get loads of errors on my Model in my…