sch.h
@interface sch: NSObject {
NSMutableArray *_websiteQueue;
NSMutableArray *_webpageQueue;
}
@end
[B]Your sch.m[/B]
@implemetation
-(void)whateverMethod{
//Now you can alloc and init your instance
_websiteQueue = [[NSMutableArray alloc] initWithCapacity:2];
_webpageQueue = [[NSMutableArray alloc] initWithCapacity:2];
//Now you can add,remove,replace objects etc from your array sense it's Mutable.
}