RE: Issues with applications running on background (Alarm Application)

2014-12-17 Thread Claudio M. E. Bastos Iorio
Maximiliano Edison Bastos Iorio Cc: Jens Alfke; Cocoa-dev@lists.apple.com Subject: Re: Issues with applications running on background (Alarm Application) On Dec 16, 2014, at 7:55 PM, Claudio Maximiliano Edison Bastos Iorio selecter...@gmail.com wrote: I still need to check if this is a proper

RE: Issues with applications running on background (Alarm Application)

2014-12-17 Thread Claudio M. E. Bastos Iorio
Notifications, right? Thanks in advance. Claudio M. E. Bastos Iorio From: Jens Alfke [mailto:j...@mooseyard.com] Sent: Tuesday, December 16, 2014 8:56 PM To: Claudio Maximiliano Edison Bastos Iorio Cc: Cocoa-dev@lists.apple.com Subject: Re: Issues with applications running

Re: Issues with applications running on background (Alarm Application)

2014-12-17 Thread Jens Alfke
On Dec 16, 2014, at 10:37 PM, Claudio Maximiliano Edison Bastos Iorio selecter...@gmail.com wrote: Is it possible to wakeup/resume an iPhone application from background mode to foreground mode programmatically? How? No. From the user's perspective, the app they're using would abruptly

Re: Issues with applications running on background (Alarm Application)

2014-12-17 Thread Fritz Anderson
On Dec 16, 2014, at 9:55 PM, Claudio Maximiliano Edison Bastos Iorio selecter...@gmail.com wrote: soundName property is OK, and allows to use any embedded sound. But there’s no way to load any custom view dispatched right from the LocalNotification, at least no with a previous user

Re: Issues with applications running on background (Alarm Application)

2014-12-17 Thread Mike Abdullah
On 17 Dec 2014, at 17:18, Fritz Anderson fri...@manoverboard.org wrote: On Dec 16, 2014, at 9:55 PM, Claudio Maximiliano Edison Bastos Iorio selecter...@gmail.com wrote: soundName property is OK, and allows to use any embedded sound. But there’s no way to load any custom view

RE: Issues with applications running on background (Alarm Application)

2014-12-17 Thread Claudio M. E. Bastos Iorio
: Claudio Maximiliano Edison Bastos Iorio; Cocoa-dev@lists.apple.com Subject: Re: Issues with applications running on background (Alarm Application) On 17 Dec 2014, at 17:18, Fritz Anderson fri...@manoverboard.org wrote: On Dec 16, 2014, at 9:55 PM, Claudio Maximiliano Edison Bastos Iorio selecter

Re: Issues with applications running on background (Alarm Application)

2014-12-16 Thread Jens Alfke
On Dec 16, 2014, at 11:49 AM, Claudio M. E. Bastos Iorio selecter...@gmail.com wrote: · I’ve started by using UILocalNotification, however, when my app goes to background, I’m receiving the scheduled Notification, as expected, but I didn’t find a way to load my custom image or

Re: Issues with applications running on background (Alarm Application)

2014-12-16 Thread Claudio Maximiliano Edison Bastos Iorio
Hi Jens, thanks for your response. soundName property is OK, and allows to use any embedded sound. But there’s no way to load any custom view dispatched right from the LocalNotification, at least no with a previous user interaction. I’ve just found UIApplication’s

Re: Issues with applications running on background (Alarm Application)

2014-12-16 Thread Kyle Sluder
On Dec 16, 2014, at 7:55 PM, Claudio Maximiliano Edison Bastos Iorio selecter...@gmail.com wrote: I still need to check if this is a proper solution, however, I wonder if Apple will allow me to use this task to keep my Application running on the background. Do you guys have any idea about

Re: Issues with applications running on background (Alarm Application)

2014-12-16 Thread Jens Alfke
On Dec 16, 2014, at 7:55 PM, Claudio Maximiliano Edison Bastos Iorio selecter...@gmail.com wrote: soundName property is OK, and allows to use any embedded sound. But there’s no way to load any custom view dispatched right from the LocalNotification, at least no with a previous user

Re: Issues with applications running on background (Alarm Application)

2014-12-16 Thread Claudio Maximiliano Edison Bastos Iorio
Hello again, I’m able to keep my App alive on the background using beginBackgroundTaskWithExpirationHandler. However, now I’m not able to resume my app to the foreground. So, my question now is.. : Is it possible to wakeup/resume an iPhone application from background mode to foreground mode