- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我在将 UIPageViewController 集成到我现有的应用程序中时遇到问题。我有一个带有项目列表的简单 UITableViewController。点击一个会弹出详细 View 。我只想让用户从详细 View 滑动到详细 View (很常见)。我按照这个开始:http://www.appcoda.com/uipageviewcontroller-storyboard-tutorial/ .
使用 tableview,我是否可以简单地将一个单元连接到 PageViewController 并使用我现有的详细信息 VC 作为“内容”或“数据” View Controller ?
更新 1:我已经掌握了基础知识,我可以在详细信息 View 中查看我的内容并在项目之间滑动。但是,除了数据传递之外的所有内容都不起作用。最大的问题是导航 Controller 。当我看到详细 View 时,从技术上讲,我看到了一个带后退按钮的导航栏,但它没有我在 viewdidload 中添加的任何按钮(使用 [self.navigationController.navigationBar addSubview:addButton])。我添加的 barbuttonitem 也没有显示(我读过有关将 navitem 作为属性传递的信息,但我仍然存在其他问题)。内容位于导航栏下方(可通过调整框架来修复,但它只是让我觉得有些地方不对)。在我滑动一次后,显示自定义按钮(不是 barbuttonitem),但按下它们会出现无法识别的选择器错误,告诉我初始目标 self(detailVC)已经消失。为什么这会被释放?为什么按钮在第一次加载时不显示(调用 viewdidload)?似乎我缺少将 TableVC 连接到 PageVC 到 DetailVC 并让导航 Controller 和栏传播通过的部分。它只是不认为导航 Controller 在那里。
当前设置: Storyboard使用初始 VC 作为导航 Controller 。一切正常。我现在使用了一个单元格并连接到一个新的 View Controller (采用 UIPageViewControllerDataSource)。然后在它的 viewdidload 中我有:
// Create page view controller
self.pageViewController = [[UIPageViewController alloc] initWithTransitionStyle:UIPageViewControllerTransitionStyleScroll navigationOrientation:UIPageViewControllerNavigationOrientationHorizontal options:nil];
self.summaryPageViewController.dataSource = self;
myContentViewController *startingViewController = [self viewControllerAtIndex:self.rowTapped];
NSArray *viewControllers = @[startingViewController];
[self.pageViewController setViewControllers:viewControllers direction:UIPageViewControllerNavigationDirectionForward animated:NO completion:nil];
现在我有以下内容,我在苹果的例子中看到了
[self addChildViewController:self.pageViewController];
[self.view addSubview:self.pageViewController.view];
[self.pageViewController didMoveToParentViewController:self];
从表到 View Controller 的 segue 保持导航(推送 segue),但在那之后我似乎失去了它。我尝试添加 [self.navigationController pushViewController:self.summaryPageViewController animated:NO];
但这给了我“嵌套推送动画可能导致导航栏损坏”错误。就像我说的,这完成了让我在 View 之间滑动并显示不同数据的基础知识,但很明显缺少某些东西。我到处搜索,但找不到让 pageviewcontroller 和 nav controller 一起玩得很好的东西。非常感谢您的帮助,让我知道我还能提供什么帮助。
排序解决方案:奖励唯一答案的赏金。这不是我需要的一切,但 mark 很有帮助,主要是传递 navItem 属性并添加按钮,以便。请小心“内容” View Controller 上的 viewdidload 和 appear 方法,因为它们的页面 View Controller 不会按照您习惯的顺序调用内容,因为它会加载上一个和下一个 Controller 。
最佳答案
是的,听起来不错。你试过了吗?问题出在哪里?
编辑以回答您的编辑;)
您可以通过这种方式在 TableView 选择推送的 ViewController 的 viewDidLoad
中添加 UIBarButtonItems:
一个项目:
UIBarButtonItem *barButton = [[UIBarButtonItem alloc] initWithTitle:@"Test" style:UIBarButtonItemStylePlain target:self action:@selector(barButtonItemTapped:)];
self.navigationItem.rightBarButtonItem = barButton;
两项:
UIBarButtonItem *barButton = [[UIBarButtonItem alloc] initWithTitle:@"Test" style:UIBarButtonItemStylePlain target:self action:@selector(barButtonItemTapped:)];
UIBarButtonItem *barButton2 = [[UIBarButtonItem alloc] initWithTitle:@"Test" style:UIBarButtonItemStylePlain target:self action:@selector(barButtonItemTapped:)];
self.navigationItem.rightBarButtonItems = @[barButton, barButton2];
使用 leftBarButtonItem
或 leftBarButtonItems
将按钮放在左侧。
实现此方法(或您在上面调用的选择器的任何名称)以使按钮在点击时起作用:
- (void)barButtonItemTapped:(id)sender
{
NSLog(@"Hello");
}
我在一个带有 Storyboard的测试项目中尝试过这个, Controller 层次结构是这样的:
UINavigationController -> UITableViewController -> UIViewController (with UIPageViewController as childViewController) -> UIViewController as view controllers inside the UIPageViewController
从 iOS 7 开始,您的内容显示在状态栏下方是正常的。如果你不想要,你需要调整你的 View 框架。 SO 上有很多关于此的问题。
希望对您有所帮助。
关于ios - 将 UIPageViewController 与 UITableViewController 和 UINavigationController 集成到现有应用程序中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24251546/
仅限 Swift 我创建了一个功能齐全的 UIPageViewController,其中包含 3 个不同的 UIViewController,是否可以在其中一个 UIViewController 中创
我正在寻找一种解决方案,其中我将一个 uipageviewcontroller 嵌入到另一个 uipageviewcontroller 中,因此当我尝试滑动最后一个 viewcontroller 时内
我想调整我的 UIPageViewController 以像图像中那样工作,目前 1b 可以去 2a 等。我需要什么像图片中那样锁定方向?我忘记了什么还是我使用了错误的逻辑。任何提示都会有很大帮助!
我在从 UIPageViewController 打开 View 并返回到 PageViewController 上的同一页面时遇到问题。我当前的设置是一个教程,您可以滚动页面查看教程。在第二页上,它
几个小时以来,我一直在努力解决这个问题,我一定是误解了 UIPageViewController 的工作原理。 我有 5 个设置屏幕(加载到 UIPageViewController 中的独立 Vie
我正在尝试将 UIPageViewController 的 UIPanGestureRecognizer 分配给不同的(自定义) View ,以便用于页面切换的平移手势仅适用于屏幕的特定区域。代码基本
我的 UIPageViewController 有一个大问题。我想使用部分和子部分在我的应用程序中呈现内容。因此,我创建了 UIPageViewController 的“两个” 实例 - 水平(红色)
我正在尝试创建一个只占据屏幕一部分的滚动页面 View Controller 。我已经使用 Storyboard 和 ContainerView 对象成功地做到了这一点,但我现在需要复制以编程方式创建
我正在使用 UIPageViewController 来浏览页面(UIViewController 数组)。我将页面 View Controller 推到顶部导航 Controller 上。 当我启动
我在 Xcode 4 中使用基于页面的应用程序模板来加载 PDF 页面并在隐藏的文本框上创建一个 UITextView,以便用户可以写笔记。 到目前为止,我已经完成了所有工作,但是当我添加 UITex
我正在使用带有 transitionStyle 的 UIPageViewController UIPageViewControllerTransitionStyleScroll和导航定位UIPageV
我是 iPhone 应用程序开发新手,需要在我正在开发的应用程序中显示 PDF 文件。我想使用 UIPageViewController 因为它允许分页等。到目前为止,我还无法弄清楚如何将内容加载到
谁能告诉我,如何使用 UIPageViewController 在我的背景图像而不是 View 边界周围制作阴影? 换句话说,我有一个“不规则的背景图像”,其边界看起来像波浪。当我从一个页面转到另一个
我的 UIPageViewController 在 iOS 5 中运行良好。但是当 iOS 6 出现时,我想使用新的滚动过渡样式(UIPageViewControllerTransitionStyle
我已经在这上面花了几个小时了。我已使用 UIPageViewControllerNavigationOrientationHorizontal 初始化了 UIPageViewController,
在我的应用程序中,我使用 UIPageViewController (PVC) 以及 UIPageViewControllerTransitionStylePageCurl 过渡样式和 UIPageV
我有一个 UIPageViewController显示带有 Transition style scroll 的图像.我要处理tap和 pan手势所以为了做到这一点,我做了一个小技巧,把另一个 view
我有一个 UIPageViewController ( 委托(delegate))管理 3 个 UIViewController . 要从第二个 View 转到第三个,我必须点击一个按钮,否则第二个
我正在展示一个简单的 UIPageViewController 并向其中添加一些非常简单和愚蠢的 subview Controller 。当 UIPageViewController 被解雇时,我正在
我有一个带有动态变化数据源的 UIPageViewController - viewControllerAfterViewController 和 viewControllerBeforeViewCo
我是一名优秀的程序员,十分优秀!