SliderCell.h

/*
 Copyright (C) 2015 Apple Inc. All Rights Reserved.
 See LICENSE.txt for this sample’s licensing information
 
 Abstract:
 UITableViewCell to host a slider, its label and value.
 */
 
@import UIKit;
 
static const NSInteger kSliderTag = 1337;
 
@interface SliderCell : UITableViewCell
 
@end