1

[self.view viewWithTag]用来引用 UIViewController 中的对象。然后我继续将特定的子视图移动到新的 UIViewController,然后将其添加为子视图控制器并将视图添加为子视图。但是,现在我无法viewWithTag在子视图控制器中使用来访问不同的对象。每次,使用检索的对象viewWithTag为零。

我不认为我使用 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];

当我添加断点 andpo updateButton时,它返回为零。我也尝试以这种方式检索的视图控制器中的其他 UI 元素也发生了同样的事情。

4

1 回答 1

0

我想到了。updateButton被添加到另一个 UIView 中,该 UIView 被添加到父视图控制器中。因此,为了检索 updateButton 我应该使用[self.parentViewController.view viewwithTag:5]而不是[self.view viewWithTag:5].

于 2015-10-26T22:04:28.623 回答