I have an Apple WatchOS2 app which I need to upgrade it to WatchOS 3. As there is no glance screen on WatchOS 3 anymore I'm not sure how to use the current glance screen to create automatic snapshot by calling scheduleSnapshotRefresh method in WKSnapshotRefreshBackgroundTask. Can I migrate the whole project from WatchOS 2 target to a WatchOS 3 target and apply changes to make it compatible with WatchOS 3?
Using the existing glance screen of WatchOS 2 as snapshot of the watch app for WatchOS 3
286 Views Asked by Samira At
1
There are 1 best solutions below
Related Questions in IOS
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
- iOS 8.3 Safari crashes on input type=file
- TTTTimeIntervalFormatter always returns strings in English
- How do I add multiple in app purchases in Swift Spritekit?
- Setup code for xibs in iOS. -awakFromNb:
- iOS Voice Over only reads out the title of any alert views
Related Questions in SNAPSHOT
- "An error occurred opening snapshot" Process Monitor
- Capture an image using DirectShow via webcam in vb.net
- how to create a snapshot using Xcode 7?
- Gradle: updated dependencies not used
- Taking EBS snapshot for multiple mongo node EBS volumes in mongoDB cluster
- Is it possible to take a snapshot of combined views including the camera?
- Can anyone give a snapshot example of elastic-search by using python?
- Xamarin form: Is there a way to get a thumbnail from the video
- schedule RDS database shutdown and startup
- vmware quiescence snapshot
- AWS RDS save snapshot of selected tables
- Automatic creation of snapshots using AWS Lambda
- Shell script to check most recent ZFS snapshot
- could not GET http.../artifactory/oss-snapshot-local/..bolts-android-24.2.0.pm
- PhantomJS snapshots of Angularjs (Argument 'MainCtrl' is not a function, got undefined)
Related Questions in WATCHOS-3
- WKURLSessionRefreshBackgroundTask isn't called when attempting to do background refreshes in watchOS
- Apple Watch Kit wouldn't fetch Image
- When WKExtension.scheduleBackgroundRefresh is supposed to call scheduledCompletion handler?
- Cannot keep WatchOS 3 data synced with Firebase?
- Complication not appears in Gallery
- How to make count-down within watch complication?
- Is there a way to remove +/- from CLKRelativeDateTextProvider with offset style?
- Interpreting crash at nopl
- Sharing the data model between watchapp and its complication
- Using images in the main Xcode project for Watch app
- WatchOS 3 - How does one tell if the parent app is in the foreground?
- Delivery failure while sending a message from WatchOS app to iOS app
- How to find out if background action for a local notification was answered on iPhone or Apple Watch
- Accessing Documents Folder on Apple watch through GUI
- How to implement WatchKit sliding button?
Related Questions in WKREFRESHBACKGROUNDTASK
- WKURLSessionRefreshBackgroundTask isn't called when attempting to do background refreshes in watchOS
- When WKExtension.scheduleBackgroundRefresh is supposed to call scheduledCompletion handler?
- WatchOS app got crashed by showing detail [WKRefreshBackgroundTask dealloc]
- WKRefreshBackgroundTask doesn't working
- Updating complication with Swift 3 and background task
- watchOS background task crashes on setTaskCompleted
- WatchOS 3 WKApplicationRefreshBackgroundTask didReceiveChallenge
- WKRefreshBackgroundTask for CloudKit on watchOS?
- Using the existing glance screen of WatchOS 2 as snapshot of the watch app for WatchOS 3
- To add the WatchOS 3 snapshot feature, handleBackgroundTasks and scheduleSnapshotRefreshWithPreferredDate are never triggered
- reloadTimeline() doesn't update complication
- watchOS 3 app gets seemingly randomly killed in Background
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Try: https://developer.apple.com/library/prerelease/content/samplecode/WatchBackgroundRefresh/Introduction/Intro.html
This updates the view on awake.
You can also try updating the snap shot view when you receive a refresh task (WKSnapshotRefreshBackgroundTask).
https://developer.apple.com/reference/watchkit/wksnapshotrefreshbackgroundtask
Greg