码迷,mamicode.com
首页 >  
搜索关键字:presentviewcontroller    ( 103个结果
pushViewController和presentViewController的区别
pushViewController和presentViewController的区别2014-4-15阅读3344评论11.用UINavigationController的时候用pushViewController:animated----返回之前的视图[[self navigationContr...
分类:其他好文   时间:2015-11-23 23:22:31    阅读次数:150
根据名字字符串挑战到指定的类
NSDictionary * d=@{@"name":@"zefeng"}; NSString * name =[[d allKeys]objectAtIndex:0]; [self presentViewController:[[NSClassFromString(name) alloc]init...
分类:其他好文   时间:2015-11-23 18:55:21    阅读次数:135
iOS:自定义模态动画 --UIPresentationController
UIPresentationController :展示控制器,是iOS8的一个新特性,用来展示模态窗口的。它是所有模态控制器的管理者。即:1>管理所有Modal出来的控制器2>管理所有通过- (void)presentViewController:(UIViewController *)viewC...
分类:移动开发   时间:2015-11-22 23:26:33    阅读次数:772
分享功能使用的UIPopoverController在iOS9 过期,替换为popoverPresentationController
记录一下 以备以后用到的时候拿出来看看。以前使用的:1 if (UIDevice.currentDevice().userInterfaceIdiom == UIUserInterfaceIdiom.Phone) {2 presentViewController(vc, animated: tru....
分类:移动开发   时间:2015-11-20 19:47:02    阅读次数:203
[iOS] 调用presentViewController和dissmissViewController引起的frame显示错误
今天在检测相册(photo+camera)这部分的bug时,发现在长按(long press)照片、录像或点击拍照的图标之后,再返回原来的view(assetTableViewController),该view会显示 错误,会显示一片空白。 下面现总结我的工作思路和debugging的步骤: ...
分类:移动开发   时间:2015-11-05 18:26:35    阅读次数:552
IOS 弹出模态View presentViewController
UIscrollViewController *scrollView=[[UIscrollViewController alloc ]init]; [self presentViewController:scrollView animated:YES completion:nil];http...
分类:移动开发   时间:2015-11-03 22:36:56    阅读次数:209
关于简单的跳转问题
在页面进行跳转的过程中,我们往往使用两种方式 self.navigationViewcontroller push... 、self presentViewController... 还有就是配合storyboard方式。有三种:1、NavgationController本身可以作为普通ViewCo...
分类:其他好文   时间:2015-11-03 17:48:15    阅读次数:119
iOS.Performance-trick-presentViewController-is-so-slow-in-didSelectRowAtIndexPath
presentViewController is so slow in "tableView:didSelectRowAtIndexPath:"Use Case: 在UITableView的delegate方法"tableView:didSelectRowAtIndexPath:"中调用"[UIVi...
分类:移动开发   时间:2015-10-23 17:58:24    阅读次数:204
Swift - whose view is not in the window hierarchy 问题解决方法
问题现象:想在页面初始化的时候,使用self.presentViewController方法弹出个告警提示框UIAlertController。但行后报了个如下告警,同时告警框也出不来。12015-03-10 09:55:34.197 Test[1140:29622] Warning: Attem....
分类:编程语言   时间:2015-09-25 16:26:34    阅读次数:790
iOS-UIViewController视图控制器跳转界面的几种常用方法
一、最普通的视图控制器UIViewContoller 一个普通的视图控制器一般只有模态跳转的功能(ipad我不了解除外,这里只说iPhone),这个方法是所有视图控制器对象都可以用的,而实现这种功能,有两种方法。 1、通过方法- (void)presentViewController:(UIVi.....
分类:移动开发   时间:2015-09-23 16:45:41    阅读次数:242
103条   上一页 1 ... 4 5 6 7 8 ... 11 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!