gpt4 book ai didi

iphone - TabBarController中NavController下ViewController的初始化

转载 作者:行者123 更新时间:2023-11-29 05:07:37 24 4
gpt4 key购买 nike

我有一个相对常见的 TabBarController 设置,其选项卡包含以 TableViewControllers 作为根的导航 Controller 。我正在尝试对这些 TableViewController 之一的初始化执行一些逻辑,但似乎找不到调用的 init 函数。

我的目标是在 TableViewController(我已对其进行子类化)中添加一个监听器,该监听器可以通过更新 navigationController.tabBarItem.badgeVluew 属性来响应事件。

我尝试将代码放入 initWithStyle: 以及 init 中,但最终都没有被调用。我也尝试将它放入 viewDidLoad 中,但只有在 Controller 实际出现时才会被调用(我需要在 Controller 加载后/标签栏项目显示后立即发生)。

有谁知道我应该把这段代码放在哪里,以便在 Controller 初始化时发生?

此外,这都是通过界面构建​​器/NIB 设置的。我没有手动添加导航 Controller 或 tableviewcontroller,这就是为什么不清楚我需要重写哪个 init 函数。

最佳答案

如果您在 IB 中选择 UITabBarItem 之一,您将看到“从“YourView”加载的 View ”。单击进入此“灰色” View 。在检查器窗口中,您将在“属性”选项卡(左侧的选项卡)中看到标题和将加载的 NIB 名称(我们将其称为“YourNibName”)。

现在选择检查器的右侧选项卡(身份)并将类名(类旁边的组合)更改为您必须在 xcode 中创建的“YourViewController”类。不要使用已选择的标准 ViewController。 InterfaceBuilder 加载您的 nib 并将其附加到您的 ViewController。

打开 YourNibName 并将 FilesOwner 的类(检查器,右侧选项卡)也更改为“YourViewController”。

您的 TabBar 的 NIB 也包含一个 FilesOwner。为此 FilesOwner 创建一个 ViewController 并将其类设置为此 Controller (即 TabBarController)

在“TabBarController”中,您可以使用以下代码找出选择了哪个选项卡:

- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController{

if ([viewController.nibName isEqualToString:@"NIBName1"]){

// Do something here, if you like. (i.e. Save the state in a string or int)
}

if ([viewController.nibName isEqualToString:@"NIBNAme2"]){

// Do something here, if you like. (i.e. Save the state in a string or int)
}

...
}

在这里你可以做一些“全局”的事情或者预初始化一些事情。这是你能做的一件事。

您的观点初始化:

如果您选择一个选项卡并且 View (由 YourViewController 处理)将首次显示,“viewDidLoad”将在“YourViewController”中调用

- (void)viewDidLoad {

// Here you can add views programatically
[self.view addSubview:myNavigationController.view];
[self.view bringSubviewToFront:myNavigationController.view];

// And if you like, do some INIT here


[super viewDidLoad];

}

我希望这就是您的问题。

现在介绍一下角标(Badge)。这是一个 hack,但对我来说效果很好。

头文件:

向 Controller 添加一个 socket ,它代表您的 TabBarController:

@interface yourController : UIViewController <UITabBarControllerDelegate> {

UITabBarController *tabBarController;
}

@property (nonatomic, retain) IBOutlet UITabBarController *tabBarController;

@end

将 IB 中的此 socket 与您的 TabBar 连接。

实现:

在 TabBarControllerClass 中,您可以覆盖“initWithNibName”:

@synthesize tabBarController;

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {

// Do some init here

// select your desired item (it will be loaded)
// then you can assign the badge
tabBarController.selectedIndex = 1;
tabBarController.selectedViewController.tabBarItem.badgeValue = @"222";

// and select the item you will start with
tabBarController.selectedIndex = 0;

// if you like you can add a notification, which you can activate from anywhere else
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(itemBadgeChanged:)
name:@"itemBadgeChangedNotification"
object:nil];
}
return self;
}

如果您不使用 nib,请改用“- (void)loadView { ... }”。您正在使用 TabBar Controller 的子类,也许您可​​以使用 'self.selectedIndex = 1;'而不是“tabBarController.selectedIndex = 1;”,等等。试试这个吧

希望这对您有所帮助!

关于iphone - TabBarController中NavController下ViewController的初始化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4025812/

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