gpt4 book ai didi

ios - 同一头文件中的类和类扩展(类别)

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:17:25 27 4
gpt4 key购买 nike

当我查看 Cocoa Touch API 时,我可以在同一个头文件中找到一些与类别一起声明的类,例如

@interface NSArray : NSObject <NSCopying, NSMutableCopying, NSSecureCoding, NSFastEnumeration>

@property (readonly) NSUInteger count;
// and some other properties

@end

@interface NSArray (NSExtendedArray)

@property (readonly, copy) NSString *description;
// and some other properties

@end

现在我正在尝试对我的类(class)做同样的事情,如下所示:

@interface ARCTextbook : NSObject

@property (nonatomic) NSInteger ID;
@property (nonatomic) NSString *name;

@end

@interface ARCTextbook (Student)

@property (nonatomic) NSInteger studentID;
@property (nonatomic, getter=isUsed) BOOL used; // Used by a student?

@end

但是,当我尝试访问 studentIDused 属性时,出现无法识别的选择器错误。我错过了什么吗?

干杯。

最佳答案

这是Associated Objects,你可以引用下面的文档:

http://www.davidhamrick.com/2012/02/12/Adding-Properties-to-an-Objective-C-Category.html

How to store not id type variable use a objc_getAssociatedObject/objc_setAssociatedObject?

ARCTextbook.h

#import <Foundation/Foundation.h>

@interface ARCTextbook : NSObject
@property (nonatomic) NSInteger ID;
@property (nonatomic) NSString *name;
@end

@interface ARCTextbook (Student)

@property (nonatomic) NSInteger studentID;
@property (nonatomic, getter=isUsed) BOOL used; // Used by a student?

@end

ARCTextbook.m

#import "ARCTextbook.h"
#import <objc/runtime.h>

@implementation ARCTextbook

@end

static NSString *kStudentID = @"kStudentID";
static NSString *kUsed = @"kUsed";

@implementation ARCTextbook (Student)
@dynamic studentID;
@dynamic used;

- (void)setStudentID:(NSInteger)aStudentID {
objc_setAssociatedObject(self, (__bridge const void *)(kStudentID), @(aStudentID), OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}

- (NSInteger)studentID {
return [objc_getAssociatedObject(self, (__bridge const void *)(kStudentID)) integerValue];
}

- (void)setUsed:(BOOL)aUsed {
objc_setAssociatedObject(self, (__bridge const void *)(kUsed), @(aUsed), OBJC_ASSOCIATION_RETAIN_NONATOMIC);
}

- (BOOL)isUsed {
return [objc_getAssociatedObject(self, (__bridge const void *)(kUsed)) boolValue];
}

@end

ViewController.m

#import "ViewController.h"
#import "ARCTextbook.h"

@implementation ViewController

- (void)viewDidLoad {
[super viewDidLoad];

// Do any additional setup after loading the view.
ARCTextbook *t = [[ARCTextbook alloc] init];
t.studentID = 2;
t.used = YES;

}

@end

关于ios - 同一头文件中的类和类扩展(类别),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28689164/

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