这两个类声明之间有什么区别?我不明白为什么在这里使用@class。谢谢。
@class TestClass;
@interface TestClass: UIView {
UIImage *image1;
UIImage *image2;
}
和
@interface TestClass: UIView {
UIImage *image1;
UIImage *image2;
}
Answers:
@class
存在以打破循环依赖关系。假设您有A类和B类。
@interface A:NSObject
- (B*)calculateMyBNess;
@end
@interface B:NSObject
- (A*)calculateMyANess;
@end
鸡; 见蛋。由于A的接口依赖于B的定义,因此永远无法编译,反之亦然。
因此,可以使用@class
以下方法修复它:
@class B;
@interface A:NSObject
- (B*)calculateMyBNess;
@end
@interface B:NSObject
- (A*)calculateMyANess;
@end
@class
有效地告诉编译器该类存在于某处,因此,声明为指向该类实例的指针是完全有效的。但是,您无法在类型仅定义为的实例引用上调用方法,@class
因为编译器没有可用的其他元数据(我不记得它是否将调用网站还原为通过id
或不)。
在您的示例中,@class
有害无害,但完全没有必要。
id
评估。
@class
他们的.h文件放入然后将所需的头文件导入他们的.m文件,而其他人可能只是将.h文件导入当前类的头文件?只是好奇,谢谢。@bbum
@class TestClass;
这仅声明“将定义TestClass类”。
在这种情况下(您粘贴的那个)这没有任何效果,因此它们是相同的。
但是,如果要定义一个使用类名的协议(例如,作为传递给委托的参数类型),则@class TestClass
由于该类仍未定义,因此需要在协议定义之前声明。
通常,如果需要在进行类定义之前提及您的类名,则需要首先发出@class
声明
当您需要为对象定义协议时,@class通常会与您也要定义其接口的对象进行交互,因此@class非常方便。使用@class,可以将协议定义保留在类的标题中。这种委托模式通常用在Objective-C上,通常比定义“ MyClass.h”和“ MyClassDelegate.h”更好。这可能会导致一些令人困惑的导入问题
@class MyClass;
@protocol MyClassDelegate<NSObject>
- (void)myClassDidSomething:(MyClass *)myClass
- (void)myClass:(MyClass *)myClass didSomethingWithResponse:(NSObject *)reponse
- (BOOL)shouldMyClassDoSomething:(MyClass *)myClass;
- (BOOL)shouldMyClass:(MyClass *)myClass doSomethingWithInput:(NSObject *)input
@end
// MyClass hasn't been defined yet, but MyClassDelegate will still compile even tho
// params mention MyClass, because of the @class declaration.
// You're telling the compiler "it's coming. don't worry".
// You can't send MyClass any messages (you can't send messages in a protocol declaration anyway),
// but it's important to note that @class only lets you reference the yet-to-be-defined class. That's all.
// The compiler doesn't know anything about MyClass other than its definition is coming eventually.
@interface MyClass : NSObject
@property (nonatomic, assign) id<MyClassDelegate> delegate;
- (void)doSomething;
- (void)doSomethingWithInput:(NSObject *)input
@end
然后,在使用类时,既可以创建类的实例,也可以使用单个import语句实现协议
#import "MyClass.h"
@interface MyOtherClass()<MyClassDelegate>
@property (nonatomic, strong) MyClass *myClass;
@end
@implementation MyOtherClass
#pragma mark - MyClassDelegate Protocol Methods
- (void)myClassDidSomething:(MyClass *)myClass {
NSLog(@"My Class Did Something!")
}
- (void)myClassDidSomethingWithResponse:(NSObject *)response {
NSLog(@"My Class Did Something With %@", response);
}
- (BOOL)shouldMyClassDoSomething {
return YES;
- (BOOL)shouldMyClassDoSomethingWithInput:(NSObject *)input {
if ([input isEqual:@YES]) {
return YES;
}
return NO;
}
- (void)doSomething {
self.myClass = [[MyClass alloc] init];
self.myClass.delegate = self;
[self.myClass doSomething];
[self.myClass doSomethingWithInput:@0];
}