BaseViewController.h 486 B

12345678910111213141516171819
  1. //
  2. // BaseViewController.h
  3. // XMeye_Old
  4. //
  5. // Created by zyj on 15/1/7.
  6. // Copyright (c) 2015年 hzjf. All rights reserved.
  7. //
  8. /***
  9. SDK初始化类,这几个文件是调用大部分sdk接口所必须要使用或者继承之后使用的父类
  10. BaseViewController 普通的视图控制器或者功能类如果要使用FunSDK,可以继承自这个类
  11. *****/
  12. #import <UIKit/UIKit.h>
  13. @interface BaseViewController : UIViewController
  14. -(int)MsgHandle;
  15. -(void)CloseMsgHandle;
  16. @end