UIPresentationController是提供高级视图切换的类。它让管理present ViewController的过程变得简单。先讲一些presentation基础知识,在iPad的设置页面,可以通过popOver弹出一个UIViewController,这个弹出的,可以和用户交互的Co...
分类:
移动开发 时间:
2015-07-21 06:46:12
阅读次数:
269
iOS开发UI篇—popoverController使用注意一、设置尺寸提示:不建议,像下面这样吧popover的宽度和高度写死。 1 //1.新建一个内容控制器 2 YYMenuViewController *menuVc=[[YYMenuViewController alloc]init...
分类:
其他好文 时间:
2015-07-20 06:51:05
阅读次数:
402
几种segue:push、modal、popover、replace、custom。一。视图切换类型介绍 1.在iPhone和iPad中,segue的类型是不同的。 2.在iPhone中,segue有(3种):push、modal和custom三种不同的类型,这些类型的区别在与新页面出现的方式。.....
分类:
其他好文 时间:
2015-07-08 22:34:22
阅读次数:
179
一、设置尺寸提示:不建议,像下面这样吧popover的宽度和高度写死。 1 //1.新建一个内容控制器 2 YYMenuViewController *menuVc=[[YYMenuViewController alloc]init]; 3 4 //2.新建一个popove...
分类:
其他好文 时间:
2015-07-08 16:24:30
阅读次数:
159
一、视图切换类型介绍在storyboard中,segue有几种不同的类型,在iphone和ipad的开发中,segue的类型是不同的。在iphone中,segue有:push,modal,和custom三种不同的类型,这些类型的区别在与新页面出现的方式。而在ipad中,有push,modal,pop...
分类:
其他好文 时间:
2015-06-09 16:33:14
阅读次数:
120
UIPresentationController(一)popover、alert、action sheet与search的新特性刘冰发表于测试?看我的刘冰2014年07月02日发表收录了本文的主题测试?看我的一枚测试人员很小,这个世界很大,让我们的分享无限!学点有用的:)+订阅更多收录本文的主题UI...
分类:
移动开发 时间:
2015-06-09 06:06:58
阅读次数:
277
下载地址:https://github.com/holtwick/HOStringSense-for-Xcode修改HOStringSense.xcodeproj工程里的HOStringHelper.m文件的内容,实现快捷键功能(control+S)来Show Strings Popover:1 N...
分类:
其他好文 时间:
2015-06-08 23:15:19
阅读次数:
147
iOS Programming Autorotation, Popover Controllers, and Modal View Controllers 自动旋转,Popover 控制器,Modal view controller 1. In this chapter, you are going...
分类:
移动开发 时间:
2015-06-01 14:37:32
阅读次数:
242
常用问题解答1、设置 ImagePicker 的大小ImagePicker 在 Popover Controller 总是以默认大小显示,设置 popoverContentSize 属性似乎无用。解决办法是将ImagePicker “包含”到一个定制的 ViewController 中,然后再 pr...
分类:
移动开发 时间:
2015-05-29 19:49:13
阅读次数:
698
效果图思路1、图片的拉伸:UIImage *image = [UIImage imageNamed:@"popover_background"];
image = [image resizableImageWithCapInsets:UIEdgeInsetsMake(24, 0, 24, 0) resizingMode:UIImageResizingModeStretch];-res...
分类:
移动开发 时间:
2015-05-10 15:46:01
阅读次数:
262