У меня есть вызов класса NSObject Details, который содержит 3 свойства.
@interface Details : NSObject
@property (nonatomic, nonnull, strong) UIImage *image;
@property (nonatomic, assign) NSInteger number;
@property (nonatomic, nonnull, strong) NSString *details;
- (NSDictionary *_Nonnull)getMappedDictionary; @end
И значение этого класса:
@interface Details()
@property (nonatomic, nonnull) NSString *imageFormat;
@property (nonatomic, nonnull) NSData *imageData;
@end
@implementation Details
- (instancetype)init {
if (self = [super init]) {
_imageFormat = @"jpg";
}
return self;
}
- (NSData *)imageData {
if (!_imageData) {
_imageData = UIImageJPEGRepresentation(self.image, 1.0);
}
return _imageData;
}
- (NSInteger)number {
return _number;
}
- (NSString *)details {
return _details;
}
- (NSString *)getImageBase64 {
NSString *base64String = @"";
base64String = [self.imageData base64EncodedStringWithOptions:kNilOptions];
return base64String;
}
static id ObjectOrNull(id object) {
return object ?: [NSNull null];
}
- (NSDictionary *)getMappedDictionary {
return @{ImageKey : ObjectOrNull([self getImageBase64]), NumberKey : @(_number), DetailKey : _details};
}
В другом вызове класса Запрос класса я хотел бысоздать массив для хранения свойств класса Details (изображение, номер, детали)
- (NSMutableSet<Details *> *)details {
if (!_details) {
_details = [NSMutableSet new];
}
return _dDetails;
}
- (NSArray *)getMappedActionDetails {
NSMutableArray *details = [NSMutableArray new];
for (Details *detail in self.details) {
[details addObject:[detail getMappedDictionary]];
}
return details;
}
Но я не могу получить свойства этого класса в виде массива ... Чего мне здесь не хватает?Любая помощь будет идеальной!Спасибо