EJImageLiker is a simple "Like Animation" Library for images on iOS.
Project allows for different animations after double tapping on an image.
-Add the like icons to your project's Assets catalog
(Make sure the icon names match what's in the file. "Favorite" and "Favorite-black")
-Add the EJImageLikersource files from Source/ to your project
Add the header file to your source code
#import "EJImageLiker.h"Create an instance of EJImageLiker
EJImageLiker *liker = [[EJImageLiker alloc]initWithFrame:CGRectMake(100,200, 200, 200)
andImage:[UIImage imageNamed:@"fall"]];
[self.view addSubview:liker];Set the AnimationStyle
[liker setAnimationStyle:AnimationStyleFade]; // defaultOther AnimationStyles Available:AnimationStyleFadeAnimationStyleReverseFadeAnimationStyleBlinkAnimationStyleMoveToCornerAnimationStyleStayOnBottom
Set the color of favorite icon
[liker setLikerImageColor:LikerColorWhite]; // defaultOther color of favorite iconLikerColorBlack
