TableSearch/TableSearch/APLBaseTableViewController.h

/*
 Copyright (C) 2015 Apple Inc. All Rights Reserved.
 See LICENSE.txt for this sample’s licensing information
 
 Abstract:
 Base or common view controller to share a common UITableViewCell prototype between subclasses.
 */
 
@import UIKit;
 
@class APLProduct;
 
extern NSString *const kCellIdentifier;
 
@interface APLBaseTableViewController : UITableViewController
 
- (void)configureCell:(UITableViewCell *)cell forProduct:(APLProduct *)product;
 
@end