SBClockApplicationIcon: Difference between revisions

From iPhone Development Wiki
No edit summary
No edit summary
Line 1: Line 1:
==SBClockApplicationIconImageView==
The Clock Icon in iOS 7 has live watch hands by default. Those are implemented in <code>SBClockApplicationIconImageView</code> (https://github.com/thomasfinch/iOS-7-SpringBoard-Headers/blob/master/SpringBoardHeaders/SBClockApplicationIconImageView.h).
The Clock Icon in iOS 7 has live watch hands by default. Those are implemented in <code>SBClockApplicationIconImageView</code> (https://github.com/thomasfinch/iOS-7-SpringBoard-Headers/blob/master/SpringBoardHeaders/SBClockApplicationIconImageView.h).
==SBClockApplicationIcon==
<code>SBClockApplicationIcon</code> is merely a subclass of <code>SBApplicationIcon</code> returning <code>SBClockApplicationIconImageView</code> as the icon image view class. The Clock app (MobileTimer.app) has a special key called <code>SBIconClass</code> in its Info.plist, the value is <code>SBClockAppicationIcon</code>. This sets the clock icon class to the live icon.
<code>SBClockApplicationIcon</code> is merely a subclass of <code>SBApplicationIcon</code> returning <code>SBClockApplicationIconImageView</code> as the icon image view class. The Clock app (MobileTimer.app) has a special key called <code>SBIconClass</code> in its Info.plist, the value is <code>SBClockAppicationIcon</code>. This sets the clock icon class to the live icon.

Revision as of 09:49, 30 March 2014

SBClockApplicationIconImageView

The Clock Icon in iOS 7 has live watch hands by default. Those are implemented in SBClockApplicationIconImageView (https://github.com/thomasfinch/iOS-7-SpringBoard-Headers/blob/master/SpringBoardHeaders/SBClockApplicationIconImageView.h).

SBClockApplicationIcon

SBClockApplicationIcon is merely a subclass of SBApplicationIcon returning SBClockApplicationIconImageView as the icon image view class. The Clock app (MobileTimer.app) has a special key called SBIconClass in its Info.plist, the value is SBClockAppicationIcon. This sets the clock icon class to the live icon.