YTViewController.h 345 B

12345678910111213141516
  1. //
  2. // YTViewController.h
  3. // test_autolayout
  4. //
  5. // Created by Ray on 20/06/2017.
  6. // Copyright © 2017 USAI. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "YTPlayerView.h"
  10. @interface YTViewController : UIViewController<YTPlayerViewDelegate,UIWebViewDelegate>
  11. @property (strong, nonatomic) IBOutlet YTPlayerView *playerView;
  12. @end