Well i just worked it out.. i created a custom init method and put the
initWithNib as supers initialiser like so:
-(id)initWithData:(NSString*)data{
if (self = [super initWithNibName:@"DetailsTableView" bundle:nil]) {
self.title = data;
}
return self;
i'd still like to know if anyone can confirm the code in my first post
is correct?
Byron