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
UIPresentationController :展示控制器,是iOS8的一个新特性,用来展示模态窗口的。它是所有模态控制器的管理者。即:1>管理所有Modal出来的控制器2>管理所有通过- (void)presentViewController:(UIViewController *)viewC...
分类:
移动开发 时间:
2015-11-22 23:26:33
阅读次数:
772
记录一下 以备以后用到的时候拿出来看看。以前使用的:1 if (UIDevice.currentDevice().userInterfaceIdiom == UIUserInterfaceIdiom.Phone) {2 presentViewController(vc, animated: tru....
分类:
移动开发 时间:
2015-11-20 19:47:02
阅读次数:
203
今天在检测相册(photo+camera)这部分的bug时,发现在长按(long press)照片、录像或点击拍照的图标之后,再返回原来的view(assetTableViewController),该view会显示 错误,会显示一片空白。 下面现总结我的工作思路和debugging的步骤: ...
分类:
移动开发 时间:
2015-11-05 18:26:35
阅读次数:
552
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
presentViewController is so slow in "tableView:didSelectRowAtIndexPath:"Use Case: 在UITableView的delegate方法"tableView:didSelectRowAtIndexPath:"中调用"[UIVi...
分类:
移动开发 时间:
2015-10-23 17:58:24
阅读次数:
204
问题现象:想在页面初始化的时候,使用self.presentViewController方法弹出个告警提示框UIAlertController。但行后报了个如下告警,同时告警框也出不来。12015-03-10 09:55:34.197 Test[1140:29622] Warning: Attem....
分类:
编程语言 时间:
2015-09-25 16:26:34
阅读次数:
790
一、最普通的视图控制器UIViewContoller 一个普通的视图控制器一般只有模态跳转的功能(ipad我不了解除外,这里只说iPhone),这个方法是所有视图控制器对象都可以用的,而实现这种功能,有两种方法。 1、通过方法- (void)presentViewController:(UIVi.....
分类:
移动开发 时间:
2015-09-23 16:45:41
阅读次数:
242