- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"ProductCatagoryCell";
ProductCatagoryCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
NSString * nibName = @"ProductCatagoryCell";
if(!cell)
{
cell = [[[UINib nibWithNibName:nibName bundle:nil] instantiateWithOwner:self options:nil] objectAtIndex:0];
}
// Configure the cell...
return cell;
}