iOS 标签栏问题
基于选项卡栏默认项目,我尝试构建一个具有 5 个选项卡的程序。这部分有效。
选项卡 2 上有几个我想要更改的标签,主要是它们的文本。我将标签连接到插座,如下所示:
IBOutlet UILabel* myName;
现在我可以告诉 myName 做任何我想做的事。例如更改文本。 当视图位于选项卡 1 上时,这是有效的,但现在在选项卡 2 上,它们在运行时包含 NILL。删除所有绑定后重新设置所有绑定,但这似乎不是问题。
如何更改选项卡栏加载的不同视图上的标签?
我非常确定我监督了一些基本的事情,但我不知道这可能是什么。
based on the Tab Bar default project, I tried to build a program with 5 tabs. This part works.
On tab 2 are several labels I want to change, mostly their text. I am connecting the labels to outlets like this:
IBOutlet UILabel* myName;
Now I can tell myName to do whatever I want. Change text for instance.
This was working when the view was on tab 1, but now on tab 2 they contain NILL at runtime. Redid all bindings after removing all, but this seems not to be the problem.
How do change labels that are on the different views a tab bar loads?
I am very sure that I oversee something fundamental, but I have no idea what this might be.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
JFYI,发现了这个错误。
一个经典的:“错误坐在屏幕前”/Blush
我没有为视图设置正确的文件所有者。我以为我检查过,但似乎没有。
JFYI, found the bug.
A classic one: 'error sitting in fromt of screen' /Blush
I didnt setup the fileowner proper for the view. Thought I checked that, but seems not.