@@ -42,22 +42,22 @@ - (QuotesPage *)fetchNewQuotesPageWithCount:(NSInteger)count
42
42
43
43
#pragma mark - Random Quote Generation
44
44
45
- static NSArray *generateRandomQuotes (NSInteger count)
45
+ static NSArray <Quote *> *generateRandomQuotes (NSInteger count)
46
46
{
47
- NSMutableArray *_quotes = [NSMutableArray new ];
47
+ NSMutableArray <Quote *> *quotes = [[ NSMutableArray alloc ] initWithCapacity: count ];
48
48
for (NSUInteger i = 0 ; i< count; i++) {
49
- NSDictionary *randomQuote = generateRandomQuoteInfo ();
50
- Quote *quote = [[Quote alloc ] initWithText: randomQuote [@" text" ]
51
- author: randomQuote [@" author" ]
49
+ NSDictionary < NSString *, NSString *> *quoteInfo = generateRandomQuoteInfo ();
50
+ Quote *quote = [[Quote alloc ] initWithText: quoteInfo [@" text" ]
51
+ author: quoteInfo [@" author" ]
52
52
style: generateStyle (i)];
53
- [_quotes addObject: quote];
53
+ [quotes addObject: quote];
54
54
}
55
- return _quotes ;
55
+ return quotes ;
56
56
}
57
57
58
- static NSDictionary *generateRandomQuoteInfo ()
58
+ static NSDictionary < NSString *, NSString *> *generateRandomQuoteInfo ()
59
59
{
60
- NSArray *quotes = quotesList ();
60
+ NSArray < NSDictionary < NSString *, NSString *> *> *quotes = quotesList ();
61
61
return quotes[arc4random_uniform ((uint32_t )[quotes count ])];
62
62
}
63
63
@@ -76,7 +76,7 @@ static QuoteDisplayStyle generateStyle(NSUInteger index)
76
76
}
77
77
}
78
78
79
- static NSArray *quotesList ()
79
+ static NSArray < NSDictionary < NSString *, NSString *> *> *quotesList ()
80
80
{
81
81
static NSArray *quotes;
82
82
static dispatch_once_t once;
0 commit comments