作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在慢慢地将我的应用程序构建为工作状态。
我正在使用两个名为 setCollection
和 addToCollection
的函数。这些函数都接受 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/
我是一名优秀的程序员,十分优秀!