15 lines
345 B
Objective-C
15 lines
345 B
Objective-C
/*
|
||
Copyright (C) 2016 Apple Inc. All Rights Reserved.
|
||
See LICENSE.txt for this sample’s licensing information
|
||
|
||
Abstract:
|
||
Collection view cell to represent an AVPlayerItem in an AVQueuePlayer's queue.
|
||
*/
|
||
|
||
@import UIKit;
|
||
|
||
|
||
@interface AAPLQueuedItemCollectionViewCell: UICollectionViewCell
|
||
@property (weak) IBOutlet UILabel *label;
|
||
@end
|