美文网首页
POPView代码分析

POPView代码分析

作者: IceWall_Rin | 来源:发表于2016-06-15 17:00 被阅读46次

TYAlertControllerDemo

1,视图展示  show 

if (self.superview == nil) {

[kCurrentWindow addSubview:self]; // 如果没有父视图的话

}

//下面是展示动画效果.

self.alpha = 0;

_alertView.transform = CGAffineTransformScale(_alertView.transform,0.1,0.1);

[UIView animateWithDuration:0.3 animations:^{

_alertView.transform = CGAffineTransformIdentity;

self.alpha = 1;

}];

2.视图隐藏

- (void)hide

{

if (self.superview) {

[UIView animateWithDuration:0.3 animations:^{

_alertView.transform = CGAffineTransformScale(_alertView.transform,0.1,0.1);

self.alpha = 0;

} completion:^(BOOL finished) {

[self removeFromSuperview];

}];

}

}

相关文章

  • POPView代码分析

    TYAlertControllerDemo 1,视图展示 show if (self.superview == n...

  • 微信小程序-自定义弹框-版本1

    还是老样子,废话不多说,直接上代码 在popView.json声明自定义组件,"component": true ...

  • PopView

    底部弹窗 中间弹窗

  • PopWindow全屏

    计算popView宽高 PopWindow全屏

  • popViewController

    popViewController返回的时候,[self.navigationController popView...

  • TableView didSelectRowAtIndexPat

    是因为被被其他控件覆盖了。 比如说:我在cell上有一个按钮,点击之后会弹出popView,popView是一个t...

  • Swift - QQ popView

    实现这种效果: popView是一个VC,里边搞了一个tableView ,主视图是ViewController,...

  • iOS popView菜单

    封装的一个菜单控件。喜欢的可以试一下。废话不多说,直接上代码。 FTPopOverMenu.h FTPopOver...

  • 嵌入式弹窗视图点击问题

    页面实现后开始发现popView cell点击不了,后面通过- (UIView*)hitTest:(CGPoint...

  • C/C++怎么做好代码静态分析

    代码静态分析 代码静态分析是指在不运行代码的情况下根据代码的静态信息,对代码的各个维度进行分析。 代码静态分析一般...

网友评论

      本文标题:POPView代码分析

      本文链接:https://www.haomeiwen.com/subject/iylpdttx.html