unrecognized selector sent to instance while trying to add an object to a mutable array
- by madpoet
I'm following the "Your Second iOS App" and I decided to play with the code to understand Objective C well...
What I'm trying to do is simply adding an object to a mutable array in a class. Here are the classes:
BirdSighting.h
#import <Foundation/Foundation.h>
@interface BirdSighting : NSObject
@property (nonatomic, copy) NSString *name;…