viewWithTag 在子视图控制器中总是 returns nil
viewWithTag always returns nil in child view controller
我使用 [self.view viewWithTag]
来引用 UIViewController 中的对象。然后我继续将特定子视图移动到新的 UIViewController,然后将其添加为子视图控制器并将视图添加为子视图。但是,现在我无法在子视图控制器中使用 viewWithTag
来访问不同的对象。每次,使用 viewWithTag
检索到的对象都是 nil。
我不认为我使用 viewWithTag 不当,因为在我将该视图移动到新的视图控制器之前它工作正常。一种解决方案是为我使用 viewWithTag
引用的每个视图创建属性,但我认为这不是一个好方法。有更好的解决方案吗?为什么会这样?
按要求编辑:
下面是我添加子视图控制器的方法:
self.runeTable = [RuneTableViewController new];
[self addChildViewController:self.runeTable];
self.runeTable.view.frame = CGRectMake(screenshotWidth + 32, navBarHeight, self.view.frame.size.width-screenshotWidth-32.0, self.view.frame.size.height-navBarHeight);
[self.view addSubview:self.runeTable.view];
下面是创建按钮的代码:
UIButton *updateButton = [UIButton buttonWithType:UIButtonTypeCustom];
updateButton.tag = 5;
[updateButton setTitleColor:HIGHLIGHT_COLOR forState:UIControlStateNormal];
[updateButton.titleLabel setFont:FONT_MED_LARGE_BOLD];
[updateButton setTitle:@"Update" forState:UIControlStateNormal];
updateButton.frame = CGRectMake(283, 280-60, 100, 60);
[detailInnerView addSubview:updateButton];
在其他一些方法中,我正在尝试检索目标并将其添加到该按钮:
UIButton *updateButton = (UIButton *)[self.view viewWithTag:5];
[updateButton addTarget:self action:@selector(updateCurrentDictionaryWithRuneInfo) forControlEvents:UIControlEventTouchUpInside];
当我添加断点和 po updateButton
时,它返回为 nil。我也尝试以这种方式检索的视图控制器中的其他 UI 元素发生了同样的事情。
我明白了。 updateButton
被添加到另一个UIView,它被添加到父视图控制器。因此,为了检索 updateButton,我应该使用 [self.parentViewController.view viewwithTag:5]
而不是 [self.view viewWithTag:5]
。
我使用 [self.view viewWithTag]
来引用 UIViewController 中的对象。然后我继续将特定子视图移动到新的 UIViewController,然后将其添加为子视图控制器并将视图添加为子视图。但是,现在我无法在子视图控制器中使用 viewWithTag
来访问不同的对象。每次,使用 viewWithTag
检索到的对象都是 nil。
我不认为我使用 viewWithTag 不当,因为在我将该视图移动到新的视图控制器之前它工作正常。一种解决方案是为我使用 viewWithTag
引用的每个视图创建属性,但我认为这不是一个好方法。有更好的解决方案吗?为什么会这样?
按要求编辑:
下面是我添加子视图控制器的方法:
self.runeTable = [RuneTableViewController new];
[self addChildViewController:self.runeTable];
self.runeTable.view.frame = CGRectMake(screenshotWidth + 32, navBarHeight, self.view.frame.size.width-screenshotWidth-32.0, self.view.frame.size.height-navBarHeight);
[self.view addSubview:self.runeTable.view];
下面是创建按钮的代码:
UIButton *updateButton = [UIButton buttonWithType:UIButtonTypeCustom];
updateButton.tag = 5;
[updateButton setTitleColor:HIGHLIGHT_COLOR forState:UIControlStateNormal];
[updateButton.titleLabel setFont:FONT_MED_LARGE_BOLD];
[updateButton setTitle:@"Update" forState:UIControlStateNormal];
updateButton.frame = CGRectMake(283, 280-60, 100, 60);
[detailInnerView addSubview:updateButton];
在其他一些方法中,我正在尝试检索目标并将其添加到该按钮:
UIButton *updateButton = (UIButton *)[self.view viewWithTag:5];
[updateButton addTarget:self action:@selector(updateCurrentDictionaryWithRuneInfo) forControlEvents:UIControlEventTouchUpInside];
当我添加断点和 po updateButton
时,它返回为 nil。我也尝试以这种方式检索的视图控制器中的其他 UI 元素发生了同样的事情。
我明白了。 updateButton
被添加到另一个UIView,它被添加到父视图控制器。因此,为了检索 updateButton,我应该使用 [self.parentViewController.view viewwithTag:5]
而不是 [self.view viewWithTag:5]
。