让UIAlertController兼容的同时iphone和ipad by 吴雪莹 var alert = UIAlertController(title: nil, message: message, preferredStyle: UIAlertControllerStyle.ActionSheet) alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler: { (a…
daily news新闻阅读客户端应用源码(兼容iPhone和iPad),也是一款兼容性较好的应用,可以支iphone和ipad的阅读阅读器源码,设计风格和排列效果很不错,现在做新闻资讯客户端的朋友可以参考一下吧. <ignore_js_op> <ignore_js_op> <ignore_js_op> <ignore_js_op>  详细说明:http://ios.662p.com/thread-1526-1-1.html…
iOS8.0之后, 苹果推出了UIPopoverPresentationViewController, 在弹出控制器时, 统一采用 presentViewController, 但是要实现iPhone和iPad能够统一使用一段代码, 需要进行一些设置: @implementation ViewController // UIPopoverController只能用在iPad - (void)viewDidLoad { [super viewDidLoad]; // Do any addition…
1,分割视图控制器(UISplitViewController) 在iPhone应用中,使用导航控制器由上一层界面进入下一层界面. 但iPad屏幕较大,通常使用SplitViewController来实现导航(这个是iPad专用的视图控制器).在横屏下,左侧显示一个 导航列表,点击后右边显示对应的详情.竖屏情况下显示方式会有所不同,默认只显示详细面板,原来左侧的导航列表会通过浮动窗口隐藏,需要从边缘向内拖动来 显示. 2,开发兼容的iOS应用 有时候需要开发兼容iPhone.iPod.iPad的…
在以前的Mac和iOS版本下,录制iPhone或者iPad屏幕操作是一件稍微复杂的事情.但是随着Yosemite的出现,在Mac电脑上为iPhone或iPad录屏的方法就变得简单了.下面就介绍一下具体的操作步骤: 操作系统的准备 Mac电脑:需要升级到Yosemite及其以上版本; iPhone或者iPad:需要升级到iOS8及其以上版本; 操作的步骤 1.首先将iPhone设备与Mac电脑连接; 2.打开QuickTime,选择“文件->新建影片录制”;或者快捷键“Option + Comma…
*:first-child { margin-top: 0 !important; } body > *:last-child { margin-bottom: 0 !important; } a { color: #4183C4; } a.absent { color: #cc0000; } a.anchor { display: block; padding-left: 30px; margin-left: -30px; cursor: pointer; position: absolute…
复制Main.storyboard,重命名为Main_iPad.storyboard 在info.plist文件中添加 Main storyboard file base name (iPad) --> Main_iPad Main storyboard file base name (iPhone)  --> Main Main storyboard file base name --> Main                    右键Main_iPad.storyboard --…
原文链接:http://blog.sina.com.cn/s/blog_7d796c0d0102uyd2.html 只要在样式里面加一句去掉css去掉iPhone.iPad的默认按钮样式就可以了!~ input[type="button"], input[type="submit"], input[type="reset"] { -webkit-appearance: none; } textarea {  -webkit-appearance:…
CRM2013版本 IOS APP 说明(IPhone.IPad) IPhone版本 首页 CRM APP在登录时输入账号信息,可以进行首面.其首页显示内容可以在CRM后台设置. 系统默认显示:Phone Call.Email.account.contact.lead.task.opportunity.campaign.user.appointment. 客户列表 点击客户,进入客户列表.其界面可以新增.查找.选择不同的视图列表和回到主页. 新建界面: 查询界面 查询以city开头的客户名称显示…
竖屏情况下: [UIScreen mainScreen].bounds.size.width = 320 [UIScreen mainScreen].bounds.size.width = 568 横屏情况下: [UIScreen mainScreen].bounds.size.width = 568 [UIScreen mainScreen].bounds.size.height = 320 UIViewController 和 UIWindow同理 1. storyboard iphone和…