Objective-C/AVFoundationSimplePlayer-iOS/AAPLPlayerViewController.h
/* |
Copyright (C) 2016 Apple Inc. All Rights Reserved. |
See LICENSE.txt for this sample’s licensing information |
Abstract: |
View controller containing a player view and basic playback controls. |
*/ |
@import UIKit; |
@class AAPLPlayerView; |
@interface AAPLPlayerViewController : UIViewController |
@property (readonly) AVPlayer *player; |
@property AVURLAsset *asset; |
@property CMTime currentTime; |
@property (readonly) CMTime duration; |
@property float rate; |
@property (weak) IBOutlet UISlider *timeSlider; |
@property (weak) IBOutlet UILabel *startTimeLabel; |
@property (weak) IBOutlet UILabel *durationLabel; |
@property (weak) IBOutlet UIButton *rewindButton; |
@property (weak) IBOutlet UIButton *playPauseButton; |
@property (weak) IBOutlet UIButton *fastForwardButton; |
@property (weak) IBOutlet AAPLPlayerView *playerView; |
@end |
Copyright © 2016 Apple Inc. All Rights Reserved. Terms of Use | Privacy Policy | Updated: 2016-09-13