A watchOS 2 WatchKit Animated Image Tutorial

From Techotopia
Jump to: navigation, search
PreviousTable of ContentsNext
Working with Images in WatchKit and watchOS 2A watchOS 2 WatchKit Dynamic Layout and Animation Tutorial


Purchase the full edition of this watchOS 2 App Development Essentials book in eBook ($12.99) or Print ($27.99) format
watchOS 2 App Development Essentials Print and eBook (ePub/PDF/Kindle) editions contain 35 chapters.

Buy Print


The previous chapter touched briefly on the subject of animated images within the context of a WatchKit app. This chapter will expand on this knowledge through the implementation of an example application that creates and displays an animated image within a WatchKit app scene.


Contents


Creating the Animation Example Project

Start Xcode and create a new iOS project. On the template screen choose the Application option located under watchOS in the left hand panel and select iOS App with WatchKit App. Click Next, set the product name to AnimationApp, enter your organization identifier and make sure that the Devices menu is set to Universal. Before clicking Next, change the Language menu to Swift and switch off all of the Include options. On the final screen, choose a location in which to store the project files and click on Create to proceed to the main Xcode project window.

Designing the Main Scene Layout

The only interface object required within the main WatchKit app scene is an Image object. Within the Xcode project navigator panel, locate and select the Interface.storyboard file so that it loads into the Interface Builder environment. Once loaded, locate the Image object in the Object Library panel and drag and drop it onto the main storyboard scene. With the newly added image object selected, display the Attributes Inspector and change both the Horizontal and Vertical Alignment properties to Center so that the scene layout matches Figure 18-1:


Watchkit animation image object.png

Figure 18-1


Display the Assistant Editor panel and establish an outlet connection from the Image object in the scene named imageObject.


Adding the Animation Sequence Images

The animation sequence in this example consists of 40 PNG image files, which combine to make up an animation of the planet Earth rotating. These files can be found in the animation_images folder of the sample code archive, available for download from the following link:

http://www.ebookfrenzy.com/code/watchOS2BookSamples.zip

Locate and select the Assets.xcassets entry listed under the AnimationApp WatchKit App folder within the Xcode Project Navigator panel. Ctrl-click in the left hand panel of the asset catalog and select the Import… option from the resulting menu. Within the file selection dialog, navigate to and select the animation_images folder and click on Open.

Once the images have been imported into the asset catalog a new image set will be created named animation_images containing all of the animation sequence images:


Watchkit animation images added.png

Figure 18-2

Purchase the full edition of this watchOS 2 App Development Essentials book in eBook ($12.99) or Print ($27.99) format
watchOS 2 App Development Essentials Print and eBook (ePub/PDF/Kindle) editions contain 35 chapters.

Buy Print

With the images added to the asset catalog, all that remains is to add some code in the interface controller class to create and initiate the animation.

Creating and Starting the Animated Image

Locate and edit the InterfaceController.swift file and modify the awakeWithContext method to create and display the animation image:

override func awakeWithContext(context: AnyObject?) {
    super.awakeWithContext(context)

    imageObject.setImageNamed("earth")
}

Compile and run the WatchKit app and note that image 0 appears but that the image object does not animate through the remaining frames. Modify the code further to start the animation sequence:

override func awakeWithContext(context: AnyObject?) {
    super.awakeWithContext(context)

    imageObject.setImageNamed("animation")
    imageObject.startAnimating()
}

When the app is re-launched the image object will now cycle rapidly and repeatedly through the animation frames showing the Earth rotating. To slow the animation down, the startAnimating method can be replaced with a call to the startAnimatingWithImagesInRange method specifying a duration, repeat count and a range that encompasses all of the images in the animation:

override func awakeWithContext(context: AnyObject?) {
    super.awakeWithContext(context)

    imageObject.setImageNamed("animation")
    imageObject.startAnimatingWithImagesInRange(NSRange(location: 0, 
           length: 40), duration: 7, repeatCount: 2)
}

When the app is now run, the animation frames will be run more slowly so that the entire sequence takes 7 seconds to complete. The animation should also now stop after 2 repetitions. To configure the animation loop to repeat indefinitely simply change the repeatCount value to 0.


Watchkit animated image running.png

Figure 18-3

Summary

This chapter created a sample project that demonstrates the implementation of animated images within a WatchKit app. The tutorial covered the steps required to add animation sequence images to a WatchKit app target in Xcode and outlined the code required within the interface controller to convert those images to an animated image and display that animation to the user. The chapter also explored the different ways in which the animation may be customized in terms of duration, repetition and frame range.


Purchase the full edition of this watchOS 2 App Development Essentials book in eBook ($12.99) or Print ($27.99) format
watchOS 2 App Development Essentials Print and eBook (ePub/PDF/Kindle) editions contain 35 chapters.

Buy Print



PreviousTable of ContentsNext
Working with Images in WatchKit and watchOS 2A watchOS 2 WatchKit Dynamic Layout and Animation Tutorial