Objective C - Kan ikke tilføje custom objekter til NSMutableArray.
Hej. Jeg har problemer med at tilføje objekter af typen Customer til et NSMutableArray som er en property i en CustomerCollection Class./////////////////////////////////////////////////////CustomerColection.h
#import <Foundation/Foundation.h>
#import "Customer.h"
@interface CustomerCollection : NSObject
@property NSMutableArray *customerArray; // Collection for all the customers
// method for adding a customer to customercollection
-(id)addCustomer:(Customer *) customer;
@end
//////////////////////////////////////////////////////CustomerCollection.m
#import "CustomerCollection.h"
@implementation CustomerCollection
-(id)addCustomer:(Customer *) cust{
[_customerArray addObject:cust];
return 0;
}
@end
/////////////////////////////////////////////////////////
Et andet sted kører jeg så:
[_customerCollection addCustomer:customerMads];
customerMads er som den skal være.
Jeg kan ikke få customerArray til at være andet end nil.
På forhånd tak!