Basically what the title says. If I import a class header file, will this also include the implementation file in that import?
Basically I want to import the foodObject class into my view controller. However, in my .h file I have this declared:
#foodObject.h
@property (strong, nonatomic) NSMutableDictionary *foodDictionary;
and in the .m file i have this:
#foodObject.m
[foodDictionary setObject:@"1" forKey:@"Berries"];
[foodDictionary setObject:@"1" forKey:@"Beef"];
etc....
So my question would be if I imported my foodObject.h file into my view controller and instantiated a instance of the object, would it have a foodDictionary already with the above key-value pairs? If not how would I do this.