File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ Add the page control to a view and set the desired page control properties. This
41
41
- (void)viewDidLoad {
42
42
[ super viewDidLoad] ;
43
43
44
- // Scroll view configuration
44
+ // Scroll view configuration.
45
45
_ scrollView = [[ UIScrollView alloc] initWithFrame: self .view.bounds] ;
46
46
_ scrollView.delegate = self;
47
47
...
Original file line number Diff line number Diff line change 19
19
/* *
20
20
* Animation view for loading in sprites.
21
21
*
22
- * This control provides performance benefits over animating an array of images with a UIImageView.
23
- * Only a single image composed of individual sprite frames is used, and animation simply consists
24
- * of updating the layer contentsRect.
22
+ * This control provides an alternative to animating an array of images with a UIImageView. Only
23
+ * a single image composed of individual sprite frames is used, and animation simply consists of
24
+ * updating the layer contentsRect.
25
25
*
26
26
* @ingroup MDCSpritedAnimationView
27
27
*/
72
72
* @return Initialized sprited animation view.
73
73
*/
74
74
- (nonnull instancetype )initWithSpriteSheetImage :
75
- (nullable UIImage *)spriteSheetImage NS_DESIGNATED_INITIALIZER;
75
+ (nullable UIImage *)spriteSheetImage NS_DESIGNATED_INITIALIZER;
76
76
77
77
/* * Please use initWithSpriteSheetImage:. */
78
78
- (nullable instancetype )initWithCoder : (nonnull NSCoder *)aDecoder NS_UNAVAILABLE;
You can’t perform that action at this time.
0 commit comments