Skip to content

Commit 77644c1

Browse files
committed
[EZ] Add some typing to example project, cleanup some code.
1 parent fb9ceac commit 77644c1

11 files changed

+45
-57
lines changed

Examples/LICENSE-Examples.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
This file provided by Facebook is for non-commercial testing and evaluation
2+
purposes only. Facebook reserves all rights not expressly granted.
3+
4+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
5+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
6+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
7+
FACEBOOK BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
8+
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
9+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Examples/README.md

-17
This file was deleted.

Examples/WildeGuess/WildeGuess/AppDelegate.mm

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313

1414
#import "WildeGuessCollectionViewController.h"
1515

16-
@implementation AppDelegate {
16+
@implementation AppDelegate
17+
{
1718
UIWindow *_window;
1819
}
1920

Examples/WildeGuess/WildeGuess/Components/InteractiveQuoteComponent.mm

+6-11
Original file line numberDiff line numberDiff line change
@@ -54,24 +54,19 @@ + (instancetype)newWithQuote:(Quote *)quote
5454
{[CKOverlayLayoutComponent
5555
newWithComponent:[QuoteComponent newWithQuote:quote context:context]
5656
overlay:overlay]},
57-
{hairlineComponent()}
57+
{[CKComponent
58+
newWithView:{
59+
[UIView class],
60+
{{@selector(setBackgroundColor:), [UIColor lightGrayColor]}}
61+
}
62+
size:{.height = 1/[UIScreen mainScreen].scale}]}
5863
}]];
5964
if (c) {
6065
c->_overlay = overlay;
6166
}
6267
return c;
6368
}
6469

65-
static CKComponent *hairlineComponent()
66-
{
67-
return [CKComponent
68-
newWithView:{
69-
[UIView class],
70-
{{@selector(setBackgroundColor:), [UIColor lightGrayColor]}}
71-
}
72-
size:{.height = 1/[UIScreen mainScreen].scale}];
73-
}
74-
7570
+ (id)initialState
7671
{
7772
return @NO;

Examples/WildeGuess/WildeGuess/QuoteContext.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
@interface QuoteContext : NSObject
1616

17-
- (instancetype)initWithImageNames:(NSSet *)imageNames;
17+
- (instancetype)initWithImageNames:(NSSet<NSString *> *)imageNames;
1818

1919
- (UIImage *)imageNamed:(NSString *)imageName;
2020

Examples/WildeGuess/WildeGuess/QuoteContext.m

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@
1313

1414
@implementation QuoteContext
1515
{
16-
NSDictionary *_images;
16+
NSDictionary<NSString *, UIImage *> *_images;
1717
}
1818

19-
- (instancetype)initWithImageNames:(NSSet *)imageNames
19+
- (instancetype)initWithImageNames:(NSSet<NSString *> *)imageNames
2020
{
2121
if (self = [super init]) {
22-
_images = loadImages(imageNames);
22+
_images = loadImages(imageNames);
2323
}
2424
return self;
2525
}
@@ -29,9 +29,9 @@ - (UIImage *)imageNamed:(NSString *)imageName
2929
return _images[imageName];
3030
}
3131

32-
static NSDictionary *loadImages(NSSet *imageNames)
32+
static NSDictionary<NSString *, UIImage *> *loadImages(NSSet *imageNames)
3333
{
34-
NSMutableDictionary *imageDictionary = [[NSMutableDictionary alloc] init];
34+
NSMutableDictionary<NSString *, UIImage *> *imageDictionary = [NSMutableDictionary new];
3535
for (NSString *imageName in imageNames) {
3636
UIImage *image = [UIImage imageNamed:imageName];
3737
if (image) {

Examples/WildeGuess/WildeGuess/QuoteModelController.h

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
#import <Foundation/Foundation.h>
1313

14-
@class CKCollectionViewDataSource;
1514
@class QuotesPage;
1615

1716
/**

Examples/WildeGuess/WildeGuess/QuoteModelController.m

+10-10
Original file line numberDiff line numberDiff line change
@@ -42,22 +42,22 @@ - (QuotesPage *)fetchNewQuotesPageWithCount:(NSInteger)count
4242

4343
#pragma mark - Random Quote Generation
4444

45-
static NSArray *generateRandomQuotes(NSInteger count)
45+
static NSArray<Quote *> *generateRandomQuotes(NSInteger count)
4646
{
47-
NSMutableArray *_quotes = [NSMutableArray new];
47+
NSMutableArray<Quote *> *quotes = [[NSMutableArray alloc] initWithCapacity:count];
4848
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"]
5252
style:generateStyle(i)];
53-
[_quotes addObject:quote];
53+
[quotes addObject:quote];
5454
}
55-
return _quotes;
55+
return quotes;
5656
}
5757

58-
static NSDictionary *generateRandomQuoteInfo()
58+
static NSDictionary<NSString *, NSString *> *generateRandomQuoteInfo()
5959
{
60-
NSArray *quotes = quotesList();
60+
NSArray<NSDictionary<NSString *, NSString *> *> *quotes = quotesList();
6161
return quotes[arc4random_uniform((uint32_t)[quotes count])];
6262
}
6363

@@ -76,7 +76,7 @@ static QuoteDisplayStyle generateStyle(NSUInteger index)
7676
}
7777
}
7878

79-
static NSArray *quotesList()
79+
static NSArray<NSDictionary<NSString *, NSString *> *> *quotesList()
8080
{
8181
static NSArray *quotes;
8282
static dispatch_once_t once;

Examples/WildeGuess/WildeGuess/QuotesPage.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@
1111

1212
#import <Foundation/Foundation.h>
1313

14+
@class Quote;
1415

1516
@interface QuotesPage : NSObject
1617

17-
@property (nonatomic, readonly, strong) NSArray *quotes;
18+
@property (nonatomic, readonly, copy) NSArray<Quote *> *quotes;
1819
@property (nonatomic, readonly, assign) NSInteger position;
1920

20-
- (instancetype)initWithQuotes:(NSArray *)quotes
21+
- (instancetype)initWithQuotes:(NSArray<Quote *> *)quotes
2122
position:(NSInteger)position;
2223

2324
@end

Examples/WildeGuess/WildeGuess/QuotesPage.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313

1414
@implementation QuotesPage
1515

16-
- (instancetype)initWithQuotes:(NSArray *)quotes
16+
- (instancetype)initWithQuotes:(NSArray<Quote *> *)quotes
1717
position:(NSInteger)position
1818
{
1919
if (self = [super init]) {
20-
_quotes = quotes;
20+
_quotes = [quotes copy];
2121
_position = position;
2222
}
2323
return self;

Examples/WildeGuess/WildeGuess/WildeGuessCollectionViewController.mm

+7-7
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ - (instancetype)initWithCollectionViewLayout:(UICollectionViewLayout *)layout
3333
{
3434
if (self = [super initWithCollectionViewLayout:layout]) {
3535
_sizeRangeProvider = [CKComponentFlexibleSizeRangeProvider providerWithFlexibility:CKComponentSizeRangeFlexibleHeight];
36-
_quoteModelController = [[QuoteModelController alloc] init];
36+
_quoteModelController = [QuoteModelController new];
3737
self.title = @"Wilde Guess";
3838
self.navigationItem.prompt = @"Tap to reveal which quotes are from Oscar Wilde";
3939
}
@@ -46,12 +46,12 @@ - (void)viewDidLoad
4646
// Preload images for the component context that need to be used in component preparation. Components preparation
4747
// happens on background threads but +[UIImage imageNamed:] is not thread safe and needs to be called on the main
4848
// thread. The preloaded images are then cached on the component context for use inside components.
49-
NSSet *imageNames = [NSSet setWithObjects:
50-
@"LosAngeles",
51-
@"MarketStreet",
52-
@"Drops",
53-
@"Powell",
54-
nil];
49+
NSSet<NSString *> *imageNames = [NSSet setWithObjects:
50+
@"LosAngeles",
51+
@"MarketStreet",
52+
@"Drops",
53+
@"Powell",
54+
nil];
5555
self.collectionView.backgroundColor = [UIColor whiteColor];
5656
self.collectionView.delegate = self;
5757
QuoteContext *context = [[QuoteContext alloc] initWithImageNames:imageNames];

0 commit comments

Comments
 (0)