技术的乐趣在于分享,欢迎多多交流,多多沟通。
全部博文(877)
发布时间:2015-10-26 16:00:08
http://blog.csdn.net/huifeidexin_1/article/details/85867621.在AppDelegate中添加如下代码: (1) self.window.rootViewController = self.iNavController; (2)// [self.window addSubview:self.iNavController.view];在iOS6.0 中只能使用(1).........【阅读全文】
发布时间:2015-10-25 15:34:28
定义一个新的CustomView继承自UIView,在Xib文件的View里面设置其Custom Class为 CustomView.m 然后 初始化 CustomView *customView = [[[NSBundle mainBundle] loadNibNamed:@"CustomView" owner:self options:nil] lastObject];// CustomView *customView = [CustomView sh.........【阅读全文】
发布时间:2015-10-25 12:04:51
http://www.cfanz.cn/index.php?c=article&a=read&id=231611 Attempt to present on whose view is not in the window hierarchy! 在开发的时候,有时候会遇到 1.ios attempt to present whose view is not in the window hierarchy 2.Warning: Attempt to presen.........【阅读全文】