diff --git a/RSXML/RSParsedFeed.h b/RSXML/RSParsedFeed.h index 3cffcac..956ad97 100755 --- a/RSXML/RSParsedFeed.h +++ b/RSXML/RSParsedFeed.h @@ -18,6 +18,6 @@ @property (nonatomic, readonly, nullable) NSString *title; @property (nonatomic, readonly, nullable) NSString *link; @property (nonatomic, nullable) NSString *subtitle; -@property (nonatomic, readonly, nonnull) NSSet *articles; +@property (nonatomic, readonly, nonnull) NSArray *articles; @end diff --git a/RSXML/RSParsedFeed.m b/RSXML/RSParsedFeed.m index f4c7a56..6527bc8 100755 --- a/RSXML/RSParsedFeed.m +++ b/RSXML/RSParsedFeed.m @@ -10,7 +10,7 @@ @implementation RSParsedFeed -- (instancetype)initWithURLString:(NSString *)urlString title:(NSString *)title link:(NSString *)link articles:(NSSet *)articles { +- (instancetype)initWithURLString:(NSString *)urlString title:(NSString *)title link:(NSString *)link articles:(NSArray *)articles { self = [super init]; if (!self) {