Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 563 Bytes

README.md

File metadata and controls

27 lines (21 loc) · 563 Bytes

JHLikeButton

❤️点赞动画,点赞星星,点赞爱心,抖音点赞 ❤️


What

image


Usage

    JHLikeButton *likeButton = [[JHLikeButton alloc] init];
    likeButton.frame = CGRectMake(150, 200, 40, 40);
    likeButton.type = JHLikeButtonType_Star;
    [likeButton prepare];
    likeButton.clickBlock = ^(BOOL like) {
        if (like) {
            NSLog(@"yes");
        }else{
            NSLog(@"no");
        }
    };
    [self.view addSubview:likeButton];