IOS弹出视图 LewPopupViewController

LewPopupViewController是一款IOS弹出视图软件。
iOS 下的弹出视图。支持iPhone/iPad。

软件截图

使用方法

弹出视图


1

2

3

4

5

PopupView *view = [PopupView defaultPopupView];

view.parentVC = self;

[self lew_presentPopupView:view animation:[LewPopupViewAnimationFade new] dismissed:^{

NSLog(@"动画结束");

}];

视图消失


1

[_parentVC lew_dismissPopupView];

扩展动画

本身自带了四种动画形式,如果你觉得这四种动画无法满足你的需求,可以自行扩展,只需要在自定义类中实现 LewPopupAnimation 接口,并重写相应的两个方法即可。悦德财富:https://www.yuedecaifu.com

时间: 2024-10-10 02:48:39

IOS弹出视图 LewPopupViewController的相关文章

IOS弹出UIViewController小视图

在TestViewController1中弹出TestViewController2 在TestViewController中点击按钮或者什么触发方法里面写入以下代码 TestViewController2 *test2 = [[TestViewController alloc] init]; UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:test2]; [nav

iOS实现自定义的弹出视图(popView)

前段时间,在项目中有个需求是支付完成后,弹出红包,实现这么一个发红包的功能.做了最后,实现的效果大致如下: 一.使用方法 整个ViewController的代码大致如下 // //  SecondViewController.m //  HWPopTool // //  Created by HenryCheng on 16/1/11. //  Copyright © 2016年 www.igancao.com. All rights reserved. // #import "SecondVi

IOS 弹出式 POPMenuView

//MenuView.h // //  MenuView.h //  RockPopMenu // //  Created by zhuang chaoxiao on 14-6-26. //  Copyright (c) 2014年 zhuang chaoxiao. All rights reserved. // #import <UIKit/UIKit.h> @protocol MenuViewDelegate @optional @end @interface MenuView : UIV

弹出视图集合

1,SemiModalViewController:  https://github.com/kentnguyen/KNSemiModalViewControllerUIViewController+KNSemiModal 致力于is an effort to make a replica of semi-modal view with pushed-back stacked animation found in the beautiful 2,TSPopover: https://github

简单弹出视图

? 1 2 3 4 5 6 7 8 9 10 11 12 13 14 #import "loveView.h" //点击按钮 -(void)buttonclick { UIWindow *window = [UIApplication sharedApplication].keyWindow; loveView *loveview = [[loveView alloc] initWithFrame:window.bounds]; loveview.alpha = 0; [window.

iOS开发-微信右侧弹出视图实现

微信首页的+号,点击之后会弹出一个更多的视图,这个视图如何实现呢? 实现该效果可能需要以下技术要点: 1.图片拉伸,通过拉伸图片的中间的较小区域来保持图片的边上的形状 2.仿射变换,用到仿射变换的缩放,平移和合并,视图动画 3.navigationBar的样式设置 实现效果,如下: 本Demo图片来源微信安装包解压得到的图片 实现代码: // // ViewController.m // appXX-微信更多工具栏 // // Created by MRBean on 15/7/27. // C

ios弹出软键盘时fixed失效及点击空白处隐藏层的解决办法

一.实现点击按钮弹出层和点击空白处隐藏层,event.stopPropagation()是关键,阻止传导. <script type="text/javascript"> $(function () { $('#btnShow').click(function (event) { event.stopPropagation(); $('#div_apply').toggle(); }); $(document).click(function (event) { $('#di

ios 弹出键盘 视图向上平移

[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(keyboardwillAppear:) name:UIKeyboardWillShowNotification object:nil];    [[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(keyboardWillDisappear:) name:UI

IOS 弹出模态透明的ViewController

ViewController *vcObj = [[ViewController alloc] initWithNibName:NSStringFromClass([ViewController class]) bundle:nil];    UINavigationController *navCon = [[UINavigationController alloc] initWithRootViewController:vcObj];        if ([[UIDevice curren