gpt4 book ai didi

ios - 我在主视图中写了一个函数。现在,我该如何调用它?

转载 作者:行者123 更新时间:2023-11-28 19:04:00 27 4
gpt4 key购买 nike

我有一个函数需要从主视图中的几个不同位置调用。我们称它为 updateFunction

我这样声明:

- (void)updateFunction {
//updates some variables here
}

这会在 @implementation MainViewController 之后立即发生。

现在,我不知道如何调用它。 [updateFunction]; 是错误的,因为它是 updateFunction();

我知道这很愚蠢,但它是如此基础以至于我不认为人们真的在写它。有人可以告诉我如何调用我编写的函数吗?

最佳答案

如果您从 MainViewController 中的方法调用它,您可能需要调用:

[自更新函数];

如果您从 MainViewController 外部调用它,那么在拥有对象中它看起来像这样:

MainViewController *mainViewController;

mainViewController = // set it somewhere;

[mainViewController updateFunction];

附注- 我建议您从一些 Objective-C 教程开始。如果您搜索“示例代码”,Apple 在他们的网站上有一堆。

关于ios - 我在主视图中写了一个函数。现在,我该如何调用它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22080729/

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