博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
刮奖效果
阅读量:6614 次
发布时间:2019-06-24

本文共 1096 字,大约阅读时间需要 3 分钟。

刮奖效果

 

效果

 

说明

刮奖效果使用了开源的 控件.

 

源码

////  ScratchImageViewController.m//  Animations////  Created by YouXianMing on 15/12/22.//  Copyright © 2015年 YouXianMing. All rights reserved.//#import "ScratchImageViewController.h"#import "MDScratchImageView.h"#import "UIView+SetRect.h"#import "UIImage+ImageEffects.h"@interface ScratchImageViewController ()@end@implementation ScratchImageViewController- (void)setup {    [super setup];        self.titleView.backgroundColor       = [UIColor whiteColor];    self.contentView.layer.masksToBounds = YES;        UIImage *image = [UIImage imageNamed:@"1"];        // 背景图片    UIImageView *blurImageView = [[UIImageView alloc] initWithFrame:(CGRect){CGPointZero, image.size}];    blurImageView.image        = image;    blurImageView.center       = self.contentView.middlePoint;    [self.contentView addSubview:blurImageView];        // 被刮的图片    MDScratchImageView *scratchImageView = [[MDScratchImageView alloc] initWithFrame:blurImageView.frame];    [scratchImageView setImage:[image blurImage] radius:20.f];    [self.contentView addSubview:scratchImageView];}@end

 

细节

 

转载地址:http://crhso.baihongyu.com/

你可能感兴趣的文章
LeetCode OJ:Merge Two Sorted Lists(合并两个链表)
查看>>
功能测试
查看>>
【BZOJ 1901】Dynamic Rankings
查看>>
Github-Client(ANDROID)开源之旅(二) ------ 浅析ActionBarSherkLock
查看>>
React-Native 之 GD (十六)首页筛选功能
查看>>
SSISDB5:使用TSQL脚本执行Package
查看>>
asp.net后台进程做定时任务
查看>>
给vs2012换肤
查看>>
java接口中多继承的问题
查看>>
索引笔记《二》确定需要建立索引的列
查看>>
libjpeg的问题
查看>>
Ubuntu+Apache+PHP+Mysql环境搭建(完整版)
查看>>
深度学习笔记之CNN(卷积神经网络)基础
查看>>
嵌入式 详解udev
查看>>
云安全:这也是需要花大钱去建设的部分
查看>>
5G网络不止能1秒下一部电影,它还能够…
查看>>
中国电信集采终端6700万部 金额达1070亿元
查看>>
2016年的十个数据中心故事
查看>>
《Java并发编程的艺术》一一3.3 顺序一致性
查看>>
《设计之外——比修图更重要的111件事》—第1部分3 虚心学习
查看>>