gpt4 book ai didi

ios - 将 UIPageViewController 与 UITableViewController 和 UINavigationController 集成到现有应用程序中

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:00:39 24 4
gpt4 key购买 nike

我在将 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];

使用 leftBarButtonItemleftBarButtonItems 将按钮放在左侧。

实现此方法(或您在上面调用的选择器的任何名称)以使按钮在点击时起作用:

- (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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com