其他分享
首页 > 其他分享> > 华登区块狗系统APP开发

华登区块狗系统APP开发

作者:互联网

华登区块狗系统开发,陈翎:{.l8O..285l..l22O.}华登区块狗软件开发,华登区块狗APP开发,华登区块狗模式开发,华登区块狗现成源码,狗狗集市理财模式开发

华登区块狗是什么?华登区块狗app是一款以宠物狗为主体的交易模式软件,它套用了区块链模式,让用户通过宠物的交易突破全新的宠物市场,同时划分出各个不同的交易类型,让宠物交易更加的高端,促进行业发展。

 

华登高通区块狗简介:

 

华登区块狗app是一个基于区块链的宠物狗交易服务平台,平台提供了一元夺金项目,用户注册就可以参与活动,进入集市就可以参与宠物狗的互动,而且推广平台还会获得持续的收益,非常可观!

#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

@interface UIButton (JGExtension)

/**
 按钮中的图片360度旋转
 */
- (void)JG_Rotate360DegreesAction;

/**
 结束按钮中的图片旋转
 */
- (void)JG_StopRotating;

@end

NS_ASSUME_NONNULL_END

分类的.m文件

#import "UIButton+JGExtension.h"

@implementation UIButton (JGExtension)


/**
 按钮中的图片360度旋转
 */
- (void)JG_Rotate360DegreesAction {
    CABasicAnimation* rotationAnimation;
    rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];
    rotationAnimation.toValue = [NSNumber numberWithFloat: -M_PI * 2.0 ];
    rotationAnimation.duration = 1.0;
    rotationAnimation.cumulative = YES;
    rotationAnimation.repeatCount = MAXFLOAT;
    [self.imageView.layer addAnimation:rotationAnimation forKey:@"rotationAnimation"];
}


/**
 结束按钮中的图片旋转
 */
- (void)JG_StopRotating {
    //返回原来位置
    CABasicAnimation* rotationAnimation;
    rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];
    rotationAnimation.toValue = [NSNumber numberWithFloat: 0 ];
    rotationAnimation.duration = 1.0;
    //    rotationAnimation.cumulative = YES;
    //    rotationAnimation.autoreverses=NO;
    //防止动画结束回到原始位置
    rotationAnimation.removedOnCompletion = NO;
    rotationAnimation.fillMode = kCAFillModeForwards;
    rotationAnimation.repeatCount = 1;//重复次数
    //注意一定要是rotationAnimation2不然会很快
    [self.imageView.layer addAnimation:rotationAnimation forKey:@"rotationAnimation2"];
}


@end

标签:区块,CABasicAnimation,APP,rotationAnimation,华登,JG,void
来源: https://www.cnblogs.com/w33300/p/11082792.html