4_TableViewCellSubviews/TableViewCellSubviews/APLTimeZoneCell.m

 
/*
 Copyright (C) 2016 Apple Inc. All Rights Reserved.
 See LICENSE.txt for this sample’s licensing information
 
 Abstract:
 A simple UITableViewCell subclass that provides references to its subviews.
 */
 
#import "APLTimeZoneCell.h"
 
@interface APLTimeZoneCell ()
 
@property (nonatomic, weak) IBOutlet UILabel *nameLabel;
@property (nonatomic, weak) IBOutlet UILabel *timeLabel;
@property (nonatomic, weak) IBOutlet UIImageView *timeImageView;
 
@end
 
@implementation APLTimeZoneCell
 
@end