0
votes
2answers
58 views
Null selector sent to first item in NSMutableArray
Whenever I call this method:
- (IBAction)addListItem: (id)sender {
NSString *newItemText = [inputField stringValue];
TodoItem *newItem = [[TodoItem alloc] initWithGUID …
