8000 GitHub - lichangyou/CYModalView
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

lichangyou/CYModalView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CYModalView

仿淘宝详情界面弹出动画

#动画演示图:

动画演示图

#使用说明

将带有 .h 和 .m 的文件夹 CYModalView 拖入到项目中,然后在要使用的控制器中:

######1.导入CYModalView

 #import "CYModalView.h" 

######2.添加属性

@property (strong, nonatomic) CYModalView *modalView;

######3.初始化CYModalView

self.modalView = [[CYModalView alloc] initWithHeight:300 andViewController:self];

######4.弹出视图

[self.modalView present];

######5.弹回视图,两个方法,根据弹回后有无操作选择

[self.modalView dismiss];
[self.modalView dismissWithCompletion:^{
    // 弹回后的操作,如跳转到下一个界面
}];

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0