弹出视图集合

1,SemiModalViewController:  https://github.com/kentnguyen/KNSemiModalViewController
UIViewController+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.com/takashisite/TSPopover 
实现各种弹出视图效果。弹出的视图会自动定位在相应的按钮旁边,并且有小箭头指向这个按钮。可以在弹出视图上添加按钮、列表等控件。只支持iOS5.0,只支持ARC模式

3,AGAlertViewWithProgressbar  : https://github.com/arturgrigor/AGAlertViewWithProgressbar
带进度条的AlertView

4,UAModalPanel :https://github.com/coneybeare/UAModalPanel

5,MKEntryPanelDemo : https://github.com/MugunthKumar/MKEntryPanelDemo
自定义动画视图的效果。当视图从屏幕顶部显示出来时,之前的主页面会变暗,屏幕上只出现弹出的视图。点击屏幕任意地方,弹出的视图会收回,主界面会重新显示

6,FPPopover : https://github.com/lexrus/FPPopover

iPhone上也能使用UIPopoverController。这个代码库不但让UIPopoverController的使用变得简单,同时也能在
iPhone上使用UIPopoverController。点击任意控件,如按钮、导航条按钮、工具条按钮等,都会弹出视图。弹出的视图会自动定位在相
应的按钮旁边,并且有小箭头指向这个按钮。可以在视图上加文字或者列表。

7,PopupView: https://github.com/rsidev/PopupView 同上

8,OGActionChooser : https://github.com/relikd/OGActionChooser
实现一个弹出视图(pop-up view),并且在弹出的视图上加上按钮,当按钮过多时,支持滑动视图(Scroll View)。可以取代UIActionSheet,使Action界面更加灵活美观

9,HGKOptionPanel:  https://github.com/Hegaka/HGKOptionPanel
实现可以隐藏的面板。这个面板一般位于窗口的下方。起初只是一个箭头按钮,当用户点击箭头按钮时,面板会向上缓慢滑动出来。

10,CMPopTipView: https://github.com/chrismiles/CMPopTipView
实现各种弹出消息/tips的效果。点击任意控件,按钮,导航条按钮,工具条按钮(UIBarButtonItem),都会弹出消息气泡。弹出的气泡会自动定位在相应的按钮旁边,并且有小箭头指向这个按钮。气泡的文字和颜色可以自定义

11、PopoverView: https://github.com/runway20/PopoverView
OCDaysView *daysView = [[OCDaysView alloc] initWithFrame:CGRectMake(0, 0, 150, 100)];
[daysView setMonth:10];
[daysView setYear:2012];
//[PopoverView showPopoverAtPoint:point inView:self.view withContentView:[daysView autorelease] delegate:self];
[PopoverView
showPopoverAtPoint:point inView:self.view withTitle:@"October 2012"
withContentView:[daysView autorelease] delegate:self];

时间: 2024-10-26 11:49:26

弹出视图集合的相关文章

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

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

简单弹出视图

? 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弹出视图 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(@

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

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

UIView点击事件。弹出视图,背景虚化。

@interface CountryViewController //背景 @property (strong, nonatomic) UIView *BackView; end //设置背景虚化 -(UIView *)BackView{ if (!_BackView) { _BackView = [[UIView alloc]initWithFrame:self.view.bounds]; //背景虚化 UIColor *myColor = [UIColor colorWithWhite:0.

iOS-一个弹出菜单动画视图开源项目分享

类似于Tumblr发布按钮的弹出视图 使用很简单: 初始化: @property (nonatomic, strong) XWMenuPopView *myMenuPopView; - (void)viewDidLoad { [super viewDidLoad]; //将弹出菜单视图添加到主视图 _myMenuPopView = [[XWMenuPopView alloc] initWithFrame:self.view.frame]; [_myMenuPopView setMenuPopDe

iOS UIKit:viewController之弹出和转换(3)

弹出和转换view controller技术是一种快速且简单的方式将新view content展示在屏幕中.目前有两种方式弹出新的view controller:program方式和segues方式. 1 Program方式 存在两种方式将新view controller显示在屏幕中:Container 方式和present(弹出)方式.Present方式是由UIViewController类自身支持的,所以任何view controller对象都可用.弹出view controller的过程就

IOS项目之弹出动画二

在IOS项目之弹出动画一中只是实现也功能,并没有体现面向对象的思想 ,今天就试着把它封装了一下,弹出视图的内容可以根据自定义,此处只是用UIDatePicker来演示 我把它传到了GitHub上   https://github.com/ywcui/YvanDatePicker.git 一.新建一个类YWDatePicker集成UIView // YvanDatePicker.h #import <UIKit/UIKit.h> typedef void (^selectDate)(NSDate

OpenERP-隐藏多对多域弹出列表视图的&quot;新建&quot;按钮(Hide the &quot;Create&quot; button from the popup list view of a many2many field)

隐藏多对多域的弹出列表视图中的"新建"按钮,如例: Hiding the "Create" button from the popup list view of a many2many field. Example shown as below: 1. 在.py文件中定义many2many的field: 1. Define a many2many field in the python source file 'a_m2m_field': fields.many2m