iOS实现转盘效果

本文实例为大家分享了iOS实现转盘效果的具体代码,供大家参考,具体内容如下

Demo下载地址: iOS转盘效果

功能:实现了常用的iOS转盘效果,轮盘抽奖效果的实现,转盘可以暂停,旋转,已经快速旋转抽奖,选中的效果指向正上方。

效果图:

工程文件目录:

核心代码:

//
// ViewController.m
// 转盘效果
//
// Created by llkj on 2017/8/31.
// Copyright © 2017年 LayneCheung. All rights reserved.
//

#import "ViewController.h"
#import "WheelView.h"

@interface ViewController ()

@property (nonatomic, weak) WheelView *wheelV;
@end

@implementation ViewController

- (void)viewDidLoad {
 [super viewDidLoad];

 WheelView *wheelV = [WheelView wheelView];
 wheelV.center = self.view.center;
 self.wheelV = wheelV;
 [self.view addSubview:wheelV];

}

- (IBAction)rotation:(id)sender {
 [self.wheelV rotation];
}

- (IBAction)stop:(id)sender {
 [self.wheelV stop];
}

- (void)didReceiveMemoryWarning {
 [super didReceiveMemoryWarning];
 // Dispose of any resources that can be recreated.
}

@end

WheelView文件

//
// WheelView.h
// 转盘效果
//
// Created by llkj on 2017/8/31.
// Copyright © 2017年 LayneCheung. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface WheelView : UIView

+ (instancetype)wheelView;

- (void)rotation;
- (void)stop;
@end
//
// WheelView.m
// 转盘效果
//
// Created by llkj on 2017/8/31.
// Copyright © 2017年 LayneCheung. All rights reserved.
//

#import "WheelView.h"
#import "WheelBtn.h"

#define angle2Rad(angle) ((angle) / 180.0 * M_PI)

@interface WheelView ()<CAAnimationDelegate>
@property (weak, nonatomic) IBOutlet UIImageView *contentV;

@property (nonatomic, weak) UIButton *selectBtn;

@property (nonatomic, strong) CADisplayLink *link;
@end

@implementation WheelView

- (CADisplayLink *)link {

 if (_link == nil) {
 CADisplayLink *link = [CADisplayLink displayLinkWithTarget:self selector:@selector(update)];
 [link addToRunLoop:[NSRunLoop mainRunLoop] forMode:NSDefaultRunLoopMode];
 _link = link;
 }
 return _link;
}
+ (instancetype)wheelView {

 return [[[NSBundle mainBundle] loadNibNamed:@"WheelView" owner:nil options:nil] lastObject];
}

- (instancetype)initWithFrame:(CGRect)frame
{
 self = [super initWithFrame:frame];
 if (self) {
 self = [[[NSBundle mainBundle] loadNibNamed:@"WheelView" owner:nil options:nil] lastObject];
 }
 return self;
}

- (void)awakeFromNib {
 [super awakeFromNib];

 CGFloat btnW = 68;
 CGFloat btnH = 143;
 CGFloat angle = 0;

 //加载原始大图片
 UIImage *oriImage = [UIImage imageNamed:@"LuckyAstrology"];
 //加载原始选中的大图片
 UIImage *oriSelImg = [UIImage imageNamed:@"LuckyAstrologyPressed"];

 CGFloat X = 0;
 CGFloat Y = 0;
 CGFloat sacle = [UIScreen mainScreen].scale;
 CGFloat clipW = oriImage.size.width / 12.0 * sacle;
 CGFloat clipH = oriImage.size.height * sacle;

 for (int i = 0; i < 12; i ++) {

 WheelBtn *btn = [WheelBtn buttonWithType:UIButtonTypeCustom];
 btn.bounds = CGRectMake(0, 0, btnW, btnH);

 //按钮正常状态图片
 X = i * clipW;
 //给定一张图片截取指定区域内的图片
 CGImageRef clipImg = CGImageCreateWithImageInRect(oriImage.CGImage, CGRectMake(X, Y, clipW, clipH));
 [btn setImage:[UIImage imageWithCGImage:clipImg] forState:UIControlStateNormal];

 //按钮选中状态图片
 CGImageRef clipSelImg = CGImageCreateWithImageInRect(oriSelImg.CGImage, CGRectMake(X, Y, clipW, clipH));
 [btn setImage:[UIImage imageWithCGImage:clipSelImg] forState:UIControlStateSelected];

 [btn setBackgroundImage:[UIImage imageNamed:@"LuckyRototeSelected"] forState:UIControlStateSelected];
 btn.layer.anchorPoint = CGPointMake(0.5, 1);
 btn.layer.position = CGPointMake(self.bounds.size.width * 0.5, self.bounds.size.height * 0.5);

 btn.transform = CGAffineTransformMakeRotation(angle2Rad(angle));
 angle += 30;

 [btn addTarget:self action:@selector(btnClick:) forControlEvents:UIControlEventTouchUpInside];
 [self.contentV addSubview:btn];

 //默认第一个按钮选中
 if (i == 0) {
  [self btnClick:btn];
 }
 }
}

- (void)btnClick:(UIButton *)btn {

 //1.让当前选中的按钮取消选中
 self.selectBtn.selected = NO;
 //2.让当前点击的按钮成为选中状态
 btn.selected = YES;
 //3.当前点击的按钮成为选中状态
 self.selectBtn = btn;

}
- (void)rotation {

 self.link.paused = NO;
}

- (void)stop {

 self.link.paused = YES;
}

- (void)update {

 self.contentV.transform = CGAffineTransformRotate(self.contentV.transform, M_PI / 300.0);

}

- (IBAction)start:(id)sender {

 //快速转几圈
 CABasicAnimation *anim = [CABasicAnimation animation];
 anim.keyPath = @"transform.rotation";
 anim.toValue = @(M_PI * 4);
 anim.duration = 0.5;
 anim.repeatCount = 1;
 anim.delegate = self;
 [self.contentV.layer addAnimation:anim forKey:nil];

}

- (void)animationDidStop:(CAAnimation *)anim finished:(BOOL)flag {

 CGAffineTransform transform = self.selectBtn.transform;
 //获取当前选中按钮的旋转角度
 CGFloat angle = atan2(transform.b, transform.a);

 //动画结束时当前选中的按钮指向最上方
 self.contentV.transform = CGAffineTransformMakeRotation(-angle);
}

@end

WheelBtn.m

//
// WheelBtn.m
// 转盘效果
//
// Created by llkj on 2017/8/31.
// Copyright © 2017年 LayneCheung. All rights reserved.
//

#import "WheelBtn.h"

@implementation WheelBtn

- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event {

 CGRect rect = CGRectMake(0, 0, self.bounds.size.width, self.bounds.size.height * 0.5);

 if (CGRectContainsPoint(rect, point)) {
 // 在指定的范围内
 return [super hitTest:point withEvent:event];
 } else {
 return nil;
 }
}
//取消按钮高亮状态做的事
- (void)setHighlighted:(BOOL)highlighted {

}

//返回当前按钮中的image位置和尺寸
- (CGRect)imageRectForContentRect:(CGRect)contentRect {

 return CGRectMake((contentRect.size.width - 40) *0.5, 20, 40, 48);
}

//返回当前按钮中的Label位置和尺寸
//- (CGRect)titleRectForContentRect:(CGRect)contentRect{
//
//}
@end

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • iOS实现轮盘动态效果

    本文实例为大家分享了iOS实现轮盘动态效果的具体代码,供大家参考,具体内容如下 一个常用的绘图,主要用来打分之类的动画,效果如下. 主要是iOS的绘图和动画,本来想用系统自带动画实现呢,发现实现不了,用了其他办法延时并重绘视图没有成功,用了gcd延时,nsthread休眠,performselector delay 都不行.最后用了一个定时器实现类似效果,总感觉不太明智,以后应该考虑下对CALayer和 隐式动画的角度考虑下 #import <UIKit/UIKit.h> /** * 自定义变

  • iOS开发实现转盘功能

    本文实例为大家分享了iOS实现转盘功能的具体代码,供大家参考,具体内容如下 今天给同学们讲解一下一个转盘选号的功能,直接上代码直接看 ViewController #pragma mark - 如果要旋转那就第一考虑锚点 核心动画看到的都是假象 真实的位置并没有发生改变 // // ViewController.m // 5-网易转盘的实现 // // Created by Jordan zhou on 2018/10/10. // Copyright © 2018年 Jordan zhou.

  • iOS实现新年抽奖转盘效果的思路

    临近春节,相信不少app都会加一个新的需求--新年抽奖 不多废话,先上GIF效果图 DEMO链接 1. 跑马灯效果 2. 抽奖效果 实现步骤: 一.跑马灯效果 其实很简单,就是通过以下两张图片,用NSTimer无限替换,达到跑马灯的效果 实现代码: _rotaryTable = [[UIImageView alloc] initWithFrame:CGRectMake((kScreenWidth-366*XT)/2, 218*XT, 366*XT, 318*XT)]; _rotaryTable.

  • iOS实现转盘效果

    本文实例为大家分享了iOS实现转盘效果的具体代码,供大家参考,具体内容如下 Demo下载地址: iOS转盘效果 功能:实现了常用的iOS转盘效果,轮盘抽奖效果的实现,转盘可以暂停,旋转,已经快速旋转抽奖,选中的效果指向正上方. 效果图: 工程文件目录: 核心代码: // // ViewController.m // 转盘效果 // // Created by llkj on 2017/8/31. // Copyright © 2017年 LayneCheung. All rights reser

  • 基于javascript实现九宫格大转盘效果

    本文实例为大家分享了js实现幸运抽奖九宫格大转盘效果,供大家参考,具体内容如下 实现代码: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>九宫格大转盘</title> <style type="text/css"> /*reset*/ *{ padding:0; margin:0} body{ height:

  • 简单好用可任意定制的iOS Popover气泡效果

    效果图如下所示: swift: https://github.com/corin8823/Popover OC: https://github.com/Assuner-Lee/PopoverObjC 使用示例 pod 'PopoverObjC' #import "ASViewController.h" #import <PopoverObjC/ASPopover.h> @interface ASViewController () @property (weak, nonat

  • iOS实现波浪效果

    本文实例为大家分享了iOS实现波浪效果的具体代码,供大家参考,具体内容如下 代码: @interface ViewController () @property (strong, nonatomic) CADisplayLink *displayLink; @property (strong, nonatomic) CAShapeLayer *shapeLayer; @property (strong, nonatomic) UIBezierPath *path; @property (stro

  • vue 实现 ios 原生picker 效果及实现思路解析

    以前最早实现了一个类似的时间选择插件,但是适用范围太窄,索性最近要把这个实现方式发布出来,就重写了一个高复用的vue组件. 支持安卓4.0以上,safari 7以上 效果预览 gitHub 滚轮部分主要dom结构 <template data-filtered="filtered"> <div class="pd-select-item"> <div class="pd-select-line"></di

  • JS实现简单的抽奖转盘效果示例

    本文实例讲述了JS实现简单的抽奖转盘效果.分享给大家供大家参考,具体如下: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>www.jb51.net JS抽奖转盘</title> <style> *{ margin:0; padding:0; list-style: none; } .big{

  • python实现转盘效果 python实现轮盘抽奖游戏

    本文实例为大家分享了python实现转盘效果的具体代码,供大家参考,具体内容如下 #抽奖 面向对象版本 import tkinter import time import threading class choujiang: #初始化魔术方法 def __init__(self): #准备好界面 self.root = tkinter.Tk() self.root.title('lowB版转盘') self.root.minsize(300, 300) # 声明一个是否按下开始的变量 self.

  • iOS实现抽屉效果

    本文实例为大家分享了iOS实现抽屉效果的具体代码,供大家参考,具体内容如下 抽屉效果: #import "DragerViewController.h" #define screenW [UIScreen mainScreen].bounds.size.width @interface DragerViewController () @property (nonatomic, weak) UIView *leftV; @property (nonatomic, weak) UIView

  • js+canvas实现转盘效果(两个版本)

    本文实例为大家分享了js+canvas实现转盘效果的具体代码,供大家参考,具体内容如下 用到了canvas的绘制,旋转,重绘操作,定时器,文本,平移,线条,圆,清理画布等等: 版本一 不可以点击,刷新旋转 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>转盘抽奖</title> <style type="text/css&quo

随机推荐