加载 uiview 后更改 uilabel 文本

发布于 2024-12-11 04:10:41 字数 285 浏览 0 评论 0原文

我有一个自定义 UIView 子类。我通过 [[NSBundle mainBundle] loadNibNamed:@"" ...] 加载它。我已在 Interface Builder 中正确链接了所有插座,但在 initWithCoder 中,我的 UILabel 为 0x0。

我在哪里可以找到一个方法,在 IBOutlets 完成初始化时调用,以便我可以访问我的 UILabel 并调用 setText

I have a custom UIView subclass. I am loading this through [[NSBundle mainBundle] loadNibNamed:@"" ...]. I have linked all of my outlets properly in Interface Builder but in initWithCoder, my UILabel is 0x0.

Where can I have a method that will call when the IBOutlets will finish initalizing so I can access my UILabel and call setText?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

与风相奔跑 2024-12-18 04:10:41

viewDidLoad,别忘了调用 super

- (void)viewDidLoad
{
   [super viewDidLoad];
   mylabel.text = @"yadayadayada";
}

viewDidLoad, and don't forget to call super

- (void)viewDidLoad
{
   [super viewDidLoad];
   mylabel.text = @"yadayadayada";
}
z祗昰~ 2024-12-18 04:10:41

在控制器的 -viewDidLoad 方法中初始化 UI 元素

Initialize you UI elements in controller's -viewDidLoad method

琉璃繁缕 2024-12-18 04:10:41

哇,找到答案了!

- (void)awakeFromNib

无论如何,感谢所有回答!

Wow, found the answer!

- (void)awakeFromNib

Thanks to all that answered anyway!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文