Is there any way to use local notifications to alert a user that a magazine that they are downloading via newsstand in the background has completed downloading?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Usually, you are using an NKAssetDownload to get the newstand content. Then you start the download with a NSURLConnectionDownloadDelegate:
When the download completes succesfully, you get a callback on
in which implementation you could use a UILocalNotification to alert the user.