ViewController.h 402 B

12345678910111213141516171819
  1. //
  2. // ViewController.h
  3. // Pandora
  4. //
  5. // Created by Mac Pro_C on 12-12-26.
  6. // Copyright (c) 2012年 __MyCompanyName__. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "PDRCore.h"
  10. @interface ViewController : UIViewController<PDRCoreDelegate>
  11. {
  12. BOOL _isFullScreen;
  13. UIStatusBarStyle _statusBarStyle;
  14. }
  15. @property(assign, nonatomic)BOOL showLoadingView;
  16. -(BOOL)getStatusBarHidden;
  17. @end