iOS- 自定义UIView (测试block和代理)
#import <UIKit/UIKit.h>
typedef void(^compeletionHandler) (NSInteger selectButtonIndex);
@class ZSDCustom;
@protocol ZSDCustomDelegate <NSObject>
-(void)showCustomView:(ZSDCustom *)customView andButtonClick:(NSInteger)selectIndex;
@end
@interface ZSDCustom : UIView
@property(nonatomic,copy)compeletionHandler myHandler;
@property(nonatomic,weak)id<ZSDCustomDelegate>delegate;
-(void)showCustomView:(ZSDCustom *)customView andDelegate:(id)delegate andCompeleteHandler:(compeletionHandler)handler;
@end
#import "ZSDCustom.h"
#define kDialogWidth 280.0f
#define kButtonSize CGSizeMake(115.0f,45.0f)
@implementation ZSDCustom
{
UIView *dialogView;
}
-(id)initWithFrame:(CGRect)frame
{
if (self=[super initWithFrame:frame])
{
[self setUp];
}
return self;
}
-(void)setUp
{
self.frame = [UIScreen mainScreen].bounds;
self.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.5f];
CGRect frect = CGRectZero;
frect.size.width = kDialogWidth;
dialogView = [[UIView alloc]initWithFrame:frect];
dialogView.backgroundColor = [UIColor whiteColor];
dialogView.layer.cornerRadius = 4.0f;
dialogView.layer.masksToBounds = YES;
[self addSubview:dialogView];
//按钮
frect.origin.x = 15.0f;
frect.origin.y = 56.0f + 20.0f;
frect.size = kButtonSize;
UIButton *cancelBtn = [UIButton buttonWithType:UIButtonTypeCustom];
cancelBtn.frame = frect;
[cancelBtn.titleLabel setFont:[UIFont boldSystemFontOfSize:15.0f]];
[cancelBtn setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
[cancelBtn setTitle:@"取消" forState:UIControlStateNormal];
[cancelBtn setBackgroundColor:[UIColor colorWithRed:243.0 / 255.0f green:243.0 / 255.0f blue:243.0 / 255.0f alpha:1.0]];
[cancelBtn addTarget:self action:@selector(buttonClick:) forControlEvents:UIControlEventTouchUpInside];
[cancelBtn.layer setBorderWidth:1.0];
[cancelBtn.layer setBorderColor:[UIColor grayColor].CGColor];
[cancelBtn.layer setCornerRadius:4.0f];
[cancelBtn setTag:1];
[dialogView addSubview:cancelBtn];
frect.origin.x = kDialogWidth - 15.0f - kButtonSize.width;
UIButton *okBtn = [UIButton buttonWithType:UIButtonTypeCustom];
okBtn.frame = frect;
[okBtn setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
[okBtn.titleLabel setFont:[UIFont boldSystemFontOfSize:15.0f]];
[okBtn setTitle:@"确认" forState:UIControlStateNormal];
[okBtn setBackgroundColor:[UIColor colorWithRed:207.0 / 255.0f green:44.0 / 255.0f blue:65.0 / 255.0f alpha:1.0]];
[okBtn addTarget:self action:@selector(buttonClick:) forControlEvents:UIControlEventTouchUpInside];
[okBtn.layer setCornerRadius:4.0f];
[okBtn setTag:2];
[dialogView addSubview:okBtn];
float totalHeight = CGRectGetMaxY(okBtn.frame) + 20.0f;
frect = dialogView.frame;
frect.origin.x = (self.bounds.size.width - kDialogWidth) / 2.0f;
frect.origin.y = (self.bounds.size.height - totalHeight) / 2.0f;
frect.size.height = totalHeight;
dialogView.frame = frect;
}
-(void)buttonClick:(UIButton *)sender
{
if (_myHandler) {
_myHandler(sender.tag);
}
if (sender.tag==2) {
if (_delegate&&[_delegate respondsToSelector:@selector(showCustomView:andButtonClick:)]) {
[_delegate showCustomView:self andButtonClick:sender.tag];
}
}
else
{
[self hide];
}
}
-(void)show
{
UIWindow *keyWindow = [UIApplication sharedApplication].keyWindow;
[keyWindow addSubview:self];
dialogView.alpha = 0;
dialogView.transform = CGAffineTransformMakeScale(0.01f, 0.01f);
[UIView animateWithDuration:0.3f animations:^{
dialogView.alpha = 1.0;
dialogView.transform = CGAffineTransformMakeScale(1.0, 1.0);
}];
}
-(void)hide
{
[UIView animateWithDuration:0.3f animations:^{
dialogView.alpha = 0;
dialogView.transform = CGAffineTransformMakeScale(0.01f, 0.01f);
} completion:^(BOOL finished) {
[self removeFromSuperview];
}];
}
-(void)showCustomView:(ZSDCustom *)customView andDelegate:(id)delegate andCompeleteHandler:(compeletionHandler)handler
{
[customView show];
_delegate=delegate;
_myHandler=handler;
}
@end
#import "ViewController.h"
#import "ZSDCustom.h"
@interface ViewController ()<ZSDCustomDelegate>
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (IBAction)showViewBtnClick:(UIButton *)sender
{
ZSDCustom *custom=[[ZSDCustom alloc]initWithFrame:CGRectZero];
[custom showCustomView:custom andDelegate:self andCompeleteHandler:^(NSInteger selectButtonIndex) {
NSLog(@"selectButtonIndex=%ld",selectButtonIndex);
}];
}
-(void)showCustomView:(ZSDCustom *)customView andButtonClick:(NSInteger)selectIndex
{
NSLog(@"selectIndex=%ld",selectIndex);
}
@end

iOS- 自定义UIView (测试block和代理)的更多相关文章
- IOS自定义UIView
IOS中一般会用到几种方式自定义UIView 1.继承之UIView的存代码的自定义View 2.使用xib和代码一起使用的自定义View 3.存xib的自定义View(不需要业务处理的那种) 本文主 ...
- OpenGL ES: iOS 自定义 UIView 响应屏幕旋转
iOS下使用OpenGL 如果使用GLKit View 那么不用担心屏幕旋转的问题,说明如下: If you change the size, scale factor, or drawable pr ...
- iOS:UIView的block函数实现转场动画---双视图
使用UIView动画函数实现转场动画——双视图 + (void)transitionFromView:(UIView *)fromView toView:(UIView *)toView durati ...
- iOS:UIView的block函数实现转场动画---单视图
使用UIView动画函数实现转场动画——单视图 + (void)transitionWithView:(UIView *)view duration:(NSTimeInterval)duration ...
- iOs 自定义UIView 日历的实现 Swift2.1
学习Swift有一个月了,动手写一个UIView吧. 所有源代码在最后,直接用就可以了,第一次写Swift,和C#,Java还是有区别的 (博客园可以考虑在代码插入中添加Swift的着色了) 1 函 ...
- iOS开发——OC篇&消息传递机制(KVO/NOtification/Block/代理/Target-Action)
iOS开发中消息传递机制(KVO/NOtification/Block/代理/Target-Action) 今晚看到了一篇好的文章,所以就搬过来了,方便自己以后学习 虽然这一期的主题是关于Fou ...
- iOS block和代理的区别
block和代理是iOS开发中实现回调的两种方式,大多数情况下是用哪个都可以,主要看个人喜好.本文主要是对两者做一下对比. 1.block简介 在 iOS中, block一共分三种. (1 ...
- IOS xib和代码自定义UIView
https://www.jianshu.com/p/1bcc29653085 总结的比较好 iOS开发中,我们常常将一块View封装起来,以便于统一管理内部的子控件. 下面就来说说自定义View的封装 ...
- 荼菜的iOS笔记--UIView的几个Block动画
前言:我的第一篇文章荼菜的iOS笔记–Core Animation 核心动画算是比较详细讲了核心动画的用法,但是如你上篇看到的,有时我们只是想实现一些很小的动画,这时再用coreAnimation就会 ...
随机推荐
- excel分组求和
=SUMPRODUCT((C2:C99=F2)*(B2:B99)) 说明: C2:C99=F2 找到C2到C99之间的等于F2的值 如果有多个判断条件,采用*来管理 B2:B99 求和
- codeforces 644A Parliament of Berland
A. Parliament of Berland time limit per test 1 second memory limit per test 256 megabytes input stan ...
- [iOS微博项目 - 2.3] - 用户取消对app的授权
github: https://github.com/hellovoidworld/HVWWeibo A.用户取消对app的授权 用户可以在微博网站上取消对某个应用(app)的授权 1.打开& ...
- linux下find查找命令用法
Linux下find命令在目录结构中搜索文件,并执行指定的操作.Linux下find命令提供了相当多的查找条件,功能很强大.由于find具有强大的功能,所以它的选项也很多,其中大部分选项都值得我们花时 ...
- flask中的request对象方法
'accept_charsets','accept_encodings','accept_languages','accept_mimetypes','access_route','applicati ...
- C:指针、数据类型、格式化输入输出、输入函数的坑点
指针.数据类型.格式化输入输出.输入函数的坑点 有时候我们迷茫的时候,坚持就是最好的选择. 1.指针的分类为什么很重要? 参考 答:因为指针会根据相应的类型取对应长度的数据,类型决定所取数据的长度.如 ...
- requests设置headers,proxies,cookies
header = {'referer':'http://www.baidu.com'} # referer代表从什么网页跳过来的,其他属性同理设置 proxy = { 'http':'115.28.5 ...
- 开发extjs常用的插件
Spket是目前支持Ext 2.0最为出色的IDE. 它采用.jsb project file 文件并将继承于基类和所有文档的内容嵌入到生成代码提示的Script doc中.注:不支持配置项的代码提示 ...
- C#与excel互操作的错误无法将类型为“Excel.ApplicationClass”的COM 对象强制转换为接口类型“Excel._Application”
如果您使用的电脑要操作的是office2003而之前使用过office2007使用此方法可解决您的问题 无法将类型为“Microsoft.Office.Interop.Excel.Applicatio ...
- 【M24】了解虚方法、多继承、虚基类、RTTI的成本
1.编译器必须实现出C++语言的特性.一般情况下,我们只需要使用这些特性就好了,不需要关心内部的实现细节.但是,有些特性的实现,会对对象的大小和成员方法的执行速度造成影响.因此,有必要了解内部实现的细 ...