This repository was archived by the owner on Jul 2, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathimports.m
73 lines (37 loc) · 1.53 KB
/
imports.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/***** The Good *****/
/* FLAppleCell.h */
#import <UIKit/UIKit.h>
@class FLApple; // FLAppleCell.h only needs to know that there is an FLApple class in order to be able to be compiled.
@interface FLAppleCell : UITableViewCell
@property (strong, nonatomic) FLApple *apple;
@end
/* FLAppleCell.m */
#import "FLAppleCell.h"
#import "FLApple.h" // Since FLAppleCell.m is leveraging FLApple's properties, then this file needs to know about FLApple's details. Therefore, an #import is needed here.
@interface FLAppleCell ()
@property (weak, nonatomic) IBOutlet UILabel *weightLabel;
@end
@implementation FLAppleCell
- (void)setApple:(FLApple *)apple {
_apple = apple;
self.weightLabel.text = [NSString stringWithFormat:@"Weight: %.2f", apple.weight]; // apple.weight is the property that needs to be read from FLApple.h
}
@end
/***** The Bad *****/
/* FLAppleCell.h */
#import <UIKit/UIKit.h>
#import "FLApple.h" // See that, when importing this file here, every file that imports FLAppleCell.h will import FLApple.h too. This makes the compilation process much slower and might lead to end up with an endless #import cycle.
@interface FLAppleCell : UITableViewCell
@property (strong, nonatomic) FLApple *apple;
@end
/* FLAppleCell.m */
#import "FLAppleCell.h"
@interface FLAppleCell ()
@property (weak, nonatomic) IBOutlet UILabel *weightLabel;
@end
@implementation FLAppleCell
- (void)setApple:(FLApple *)apple {
_apple = apple;
self.weightLabel.text = [NSString stringWithFormat:@"Weight: %.2f", apple.weight];
}
@end