gpt4 book ai didi

cocoa - 如何在 Cocoa 中使用函数后声明该函数?

转载 作者:行者123 更新时间:2023-12-03 16:16:05 25 4
gpt4 key购买 nike

我正在慢慢地将我的应用程序构建为工作状态。

我正在使用两个名为 setCollectionaddToCollection 的函数。这些函数都接受 NSArray 作为输入。

我还有一个名为 add 的函数,我在其中使用了这两个函数。当我尝试编译时,Xcode 显示错误:

'setCollection' undeclared (first use in this function)

我猜这与在事件函数下面定义的被调用函数有关。另一个猜测是这些函数应该全局化,以便在我的 add 函数中使用。

我通常是一名 PHP 编码员。 Php 处理这个问题的方式是第一个。调用的函数应该位于使用它们的函数之前,否则它们就不存在。有没有办法使函数在运行时仍然可用,或者我应该重新排列所有函数以使它们正常运行?

最佳答案

您可以提前声明函数,如下所示:

void setCollection(NSArray * array);
void addToCollection(NSArray * array);

//...

// code that calls setCollection or addToCollection

//...

void setCollection(NSArray * array)
{
// your code here
}

void addToCollection(NSArray * array)
{
// your code here
}

如果您要创建自定义类,并且这些是成员函数(在 Objective-C 中通常称为方法),那么您需要在类 header 中声明这些方法并在类源文件中定义它们:

//MyClass.h:
@interface MyClass : NSObject
{

}

- (void)setCollection:(NSArray *)array;
- (void)addToCollection:(NSArray *)array;

@end


//MyClass.m:

#import "MyClass.h"

@implementation MyClass

- (void)setCollection:(NSArray *)array
{
// your code here
}

- (void)addToCollection:(NSArray *)array
{
// your code here
}

@end


//some other source file

#import "MyClass.h"

//...

MyClass * collection = [[MyClass alloc] init];
[collection setCollection:someArray];
[collection addToCollection:someArray];

//...

关于cocoa - 如何在 Cocoa 中使用函数后声明该函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/483664/

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