/***************************************************************************** * VLCDetailInterfaceController.h * VLC for iOS ***************************************************************************** * Copyright (c) 2015 VideoLAN. All rights reserved. * $Id$ * * Authors: Tobias Conradi * * Refer to the COPYING file of the official project for license. *****************************************************************************/ #import #import #import "VLCBaseInterfaceController.h" @interface VLCDetailInterfaceController : VLCBaseInterfaceController @property (weak, nonatomic) IBOutlet WKInterfaceLabel *titleLabel; @property (weak, nonatomic) IBOutlet WKInterfaceLabel *durationLabel; @property (weak, nonatomic) IBOutlet WKInterfaceButton *playNowButton; @property (weak, nonatomic) IBOutlet WKInterfaceImage *imageView; - (IBAction)playNow; @end