Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maltsugar/CustomPopoverView
一款小巧灵活的自定义弹出视图, 可以做自定义AlertView、弹出窗口等等, A tiny and sweet custom popView (pop popup)
https://github.com/maltsugar/CustomPopoverView
Last synced: 3 months ago
JSON representation
一款小巧灵活的自定义弹出视图, 可以做自定义AlertView、弹出窗口等等, A tiny and sweet custom popView (pop popup)
- Host: GitHub
- URL: https://github.com/maltsugar/CustomPopoverView
- Owner: maltsugar
- License: mit
- Created: 2016-04-28T08:25:47.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-11-30T08:37:31.000Z (almost 3 years ago)
- Last Synced: 2024-07-16T11:35:05.811Z (4 months ago)
- Language: Objective-C
- Homepage:
- Size: 876 KB
- Stars: 193
- Watchers: 9
- Forks: 34
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- Awesome-iOS - CustomPopoverView - Custom popover view (UI Components)
README
![](https://img.shields.io/badge/platform-iOS-red.svg) ![](https://img.shields.io/badge/language-Objective--C-orange.svg) [![CocoaPods](http://img.shields.io/cocoapods/v/CustomPopOverView.svg?style=flat)](http://cocoapods.org/pods/CustomPopOverView) ![](https://img.shields.io/badge/license-MIT%20License-brightgreen.svg)
# 版本记录
- 1.1.2 修复动画过程中切换视图,导致无法 dismiss 的问题
- 1.0.9 添加、移除时视图 动画模式下背景渐变,防止屏幕闪一下
- 1.0.7 解决一个 CoreAnimation 内存泄漏问题
- 1.0.6 添加阴影、边框粗细、边框颜色等属性(**有些 API 名字改了**,升级到此版本需要改动一点点原有代码)
- 1.0.3 支持设置内容相对呼出的位置的上方或者下方,支持自动调整位置
- 1.0.1 修复 iOS11 下,某些情况不能弹出的 bug# 一款自定义 弹出视图
自定义弹出视图,内容支持传一组菜单标题,也支持自定义 view,或者自定义 viewController, 支持任意按钮触发,会显示在按钮底部,也支持切换按钮的对齐方式:左对齐、居中、右对齐
## 预览图如下
# 用法
- 手动下载: `CustomPopOverView`拖进去
- Cocoapods: `pod 'CustomPopOverView'`### 自定义 view
```
CustomPopOverView *view = [CustomPopOverView popOverView];
view.content = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, 100, 200)];
view.containerBackgroudColor = [UIColor blueColor];
[view showFrom:_leftBtn alignStyle:CPAlignStyleLeft];```
CustomPopOverView *view = [CustomPopOverView popOverView];UIButton *btn = [UIButton buttonWithType:UIButtonTypeInfoDark];
btn.bounds = CGRectMake(0, 0, 160, 40);
view.content = btn;
[view showFrom:sender alignStyle:CPAlignStyleRight];### 自定义 VC
```
UIViewController *vc = [[UIViewController alloc]init];
vc.view.backgroundColor = [UIColor yellowColor];
vc.view.frame = CGRectMake(0, 0, 200, 200);
UILabel *lab = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, 140, 100)];
lab.center = vc.view.center;
lab.text = @"I'm viewController's view";
lab.numberOfLines = 0;
[vc.view addSubview:lab];CustomPopOverView *view = [CustomPopOverView popOverView];
view.contentViewController = vc;[view showFrom:_rightBtn alignStyle:CPAlignStyleRight];
```### 普通用法(只传一组菜单名称)
```
NSArray *menus = @[@"清空已完成", @"清空全部"];
CPShowStyle *style = [CPShowStyle new];
style.roundMargin = 5;
style.triAngelHeight = 0.0;
style.triAngelWidth = 0.0;
style.containerCornerRadius = 5.0;
style.roundMargin = 10.0;
style.showSpace = 5.f;
style.containerBackgroudColor = RGBCOLOR(64, 64, 64);
style.containerBorderColor = UIColor.orangeColor;
style.containerBorderWidth = 2;CustomPopOverView *pView = [[CustomPopOverView alloc]initWithBounds:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width - 40, 300) titleMenus:menus style:style];
pView.delegate = self;
[pView showFrom:nil alignStyle:CPAlignStyleRight];
```### 如果你有问题欢迎 issue,希望你能够喜欢
# A custom popoverView
This custom popover view, you can give an array of menu titles for normal use. It also support custom view or viewController. It’s frame depends on the button which clicked, and it provides three alignments for the button.
## The preview chart is as follows
## How to use
### custom view
```
CustomPopOverView *view = [CustomPopOverView popOverView];
view.content = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, 100, 200)];
view.containerBackgroudColor = [UIColor blueColor];
[view showFrom:_leftBtn alignStyle:CPAlignStyleLeft];```
```
CustomPopOverView *view = [CustomPopOverView popOverView];UIButton *btn = [UIButton buttonWithType:UIButtonTypeInfoDark];
btn.bounds = CGRectMake(0, 0, 160, 40);
view.content = btn;
[view showFrom:sender alignStyle:CPAlignStyleRight];```
### custom viewController
```
UIViewController *vc = [[UIViewController alloc]init];
vc.view.backgroundColor = [UIColor yellowColor];
vc.view.frame = CGRectMake(0, 0, 200, 200);
UILabel *lab = [[UILabel alloc]initWithFrame:CGRectMake(0, 0, 140, 100)];
lab.center = vc.view.center;
lab.text = @"I'm viewController's view";
lab.numberOfLines = 0;
[vc.view addSubview:lab];CustomPopOverView *view = [CustomPopOverView popOverView];
view.contentViewController = vc;[view showFrom:_rightBtn alignStyle:CPAlignStyleRight];
```### normal use(only needs an array of titles)
```
NSArray *menus = @[@"清空已完成", @"清空全部"];
CPShowStyle *style = [CPShowStyle new];
style.roundMargin = 5;
style.triAngelHeight = 0.0;
style.triAngelWidth = 0.0;
style.containerCornerRadius = 5.0;
style.roundMargin = 10.0;
style.showSpace = 5.f;
style.containerBackgroudColor = RGBCOLOR(64, 64, 64);
style.containerBorderColor = UIColor.orangeColor;
style.containerBorderWidth = 2;CustomPopOverView *pView = [[CustomPopOverView alloc]initWithBounds:CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width - 40, 300) titleMenus:menus style:style];
pView.delegate = self;
[pView showFrom:nil alignStyle:CPAlignStyleRight];
```### if you have any question welcome to issue to me,hope you like it!