代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
ObjC
】
毛玻璃效果
作者:
茶壶
/ 发布于
2015/6/29
/
2151
#import "ViewController.h" #import "ILTranslucentView.h" #import <QuartzCore/QuartzCore.h> #import <CoreGraphics/CoreGraphics.h> @interface ViewController () @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. [scrollView setContentSize:CGSizeMake(self.view.frame.size.width, self.view.frame.size.height*2)]; // [self initWithILTranslucentView]; [self initWithVisualEffectView]; } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } - (void)initWithILTranslucentView { ILTranslucentView *translucentView = [[ILTranslucentView alloc] initWithFrame:CGRectMake(0.0, (self.view.frame.size.height - 100.0)/2, 320, 100.0)]; translucentView.translucentAlpha = 1.0; translucentView.translucentStyle = UIBarStyleDefault; translucentView.translucentTintColor = [UIColor clearColor]; translucentView.backgroundColor = [UIColor clearColor]; [self.view addSubview:translucentView]; } - (void)initWithVisualEffectView { UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0.0, 30.0, self.view.frame.size.width, 200.0)]; // [view setBackgroundColor:[UIColor whiteColor]]; // [view.layer setShadowOffset:CGSizeMake(-2.0, -2.0)]; // [view.layer setShadowPath:[[UIBezierPath bezierPathWithRect:CGRectMake(0.0, 0.0, view.bounds.size.width + 4.0, view.bounds.size.height + 4.0)] CGPath]]; // [view.layer setShadowColor:[[UIColor colorWithRed:255.0/255.0 green:255.0/255.0 blue:255.0/255.0 alpha:0.5] CGColor]]; // [view.layer setShadowOpacity:0.5]; [self.view addSubview:view]; UIVisualEffect *blurEffect; blurEffect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleExtraLight]; UIVisualEffectView *visualEffectView; visualEffectView = [[UIVisualEffectView alloc] initWithEffect:blurEffect]; [visualEffectView setFrame:view.bounds]; [view addSubview:visualEffectView]; } @end
试试其它关键字
毛玻璃
同语言下
.
根据生日计算星座
.
精简的实现一个内存池
.
iOS索引搜索核心代码
.
iOS 搜索框
.
文件操作
.
UIWebView 加载本地网页
.
取消导航条对视图的影响
.
利用终端显示 隐藏文件
.
更改导航条背景颜色
.
iOS 字体斜体
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
茶壶
贡献的其它代码
(
9
)
.
毛玻璃效果
.
整数N随机分成n份
.
如何实现获取当前定位信息
.
获取相册的所有相片
.
plist基本操作
.
获取客户端真实ip地址
.
仿async的 并行执行和序列执行函数
.
二元搜索
.
图的遍历
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3