gpt4 book ai didi

iOS 7 - 将数据从 SWRevealViewController 传递到 RearViewController

转载 作者:行者123 更新时间:2023-11-29 03:17:22 25 4
gpt4 key购买 nike

我正在使用 SWRevealViewController 获取侧边菜单功能。现在我需要在我的应用程序启动时加载一个大的 Xml 文件。

我需要将 Xml-Content 传递给嵌入在 NavigationController 中的 TabBarViewController (RearViewController)。

-> SWRevealViewController -> NavigationController -> TabBarViewController (RearViewController)

在此处查看我的 Storyboard屏幕截图: http://i.stack.imgur.com/9ynVa.png

AppDelegate.m

@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
if ([[UIDevice currentDevice] userInterfaceIdiom] == UIUserInterfaceIdiomPad) {
SWRevealViewController *swRevealViewController = (SWRevealViewController *)self.window.rootViewController;
}

return YES;
}

谢谢

最佳答案

使用委托(delegate)方法:

-(void)revealController:(SWRevealViewController *)revealController willMoveToPosition:(FrontViewPosition)position {
MyTableViewController *tableViewController = (MyTableViewController *)revealController.rearViewController;
tableViewController.items = stores;
tableViewController.selectedItemIndexPath = self.self.selectedStoreIndexPath;
}

但我不使用 TableViewController 你需要在 ViewController 上添加 TableView

关于iOS 7 - 将数据从 SWRevealViewController 传递到 RearViewController,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21535192/

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