0
votes
2answers
33 views

How to resume (or launch) my app after a phone call ends in iOS (my app did *not* initiate the phone call)?

I have seen several ways to "make sure that my app is shown again after a phone call which my app has initiated has ended" however that isn't what I want -> what I am looking for is a way to, say my ...
1
vote
0answers
27 views

Detect resumable download capacity

I wrote an iphone application used for download file from internet with resume download functionality. I use below method for resume download functionality.: [request setValue:[NSString ...
0
votes
2answers
75 views

iOS Application is not resuming where it left off?

I am facing the above issue and unsure why it is happening or how to fix it. When the app goes to the background and is later reopened, it always starts from the initial view. I would like it to show ...
0
votes
0answers
73 views

Pausing and Resuming Audio With Earbud Button

In my app I have a live stream of audio that I would like to be able to pause and resume by pressing the button on the earbud mic. The code for playing the stream itself is: - (void)viewDidLoad { ...
0
votes
0answers
69 views

Resumed event for android Titanium Studio

I'm new to Titanium Studio. And I'm learning both IOS and Android application development with Titanium Studio. For IOS, there is an event called "resumed", which is of Ti.App. When I checked the ...
0
votes
2answers
859 views

How to stop and resume background audio from iPhone app?

Am working in Messaging based iPhone app. I have added Beep sound to receive message from someone else. Am playing beep sound using AVAudioPlayer. My problem is when the user hearing song from ...
3
votes
1answer
233 views

Cocos2D pauseAllRunningActions?

I am having a hard time resuming animations in my Cocos2D app. I add a CCSprite as a child to a CCSpriteBatchNode and it goes off on an animation. So when I click the pause button I do this: ...
0
votes
1answer
164 views

Resuming UIView Animations on App Re-Entry?

I have 2 UIImageView's in the main view controller of my app. They are always animating via UIView animations. What I want to achieve is when the user clicks the home button, pause the UIView ...
0
votes
0answers
46 views

iOS - Relevance of the clock appearing when resuming?

I'm working on a long-standing, fairly-complex iOS Cocoa app, and I'm trying to fix performance when resuming from the inactive (say, locking the device). The problem appears on all versions of the ...
0
votes
0answers
276 views

Pause/Resume function for iOS

Just joined this community today and I have a question for you, guys. I am working on a Music Downloader app for iPhone and I need to add the pause/resume function for the downloading files, like the ...
2
votes
1answer
311 views

Can I figure out in iOS whether the app is resuming from standby or from multitasking

I'm currently working on a change request for our iPad app that requires that I handle the resuming of the app in two different ways depending on whether the app returned from multitasking (the user ...
1
vote
1answer
633 views

AVAudioPlayer pausing issue

In my project, I have an AVAudioPlayer which plays a song. After I pause it, and hit play again, it starts over instead of playing where I paused. Why is that happening? Also, when I press play for ...
1
vote
1answer
840 views

PhoneGap Events Not Firing On iPhone

I've started developing for iPhone using PhoneGap and an iPhone running iOS 5. With the following code, the deviceready and online events appear to fire when the application starts but none of the ...
0
votes
1answer
290 views

how to resume to correct layer after app terminates (cocos2d)

Hi i need help with this code. In my game i have main layer which has menu button for options and game level. And I have a game layer to play the game. When I terminated the app by clicking the home ...
1
vote
2answers
2k views

Do not resume MPMoviePlayerController when application enters foreground

I am developing an iPhone application which plays the video using MPMoviePlayerController. When I switch to background(device with multi-tasking support), the video play is paused and when I bring my ...
0
votes
0answers
161 views

Previous frame is shown when I set the paused time and call play on MPMoviePlayerController

I am using MPMoviePlayerController to play the movie in iPhone. When I switch to some other UIViewController I pause the movie. When I come back to MPMoviePlayerController, user should be able to ...