DetailTabBarController.h 625 B

12345678910111213141516171819
  1. //
  2. // DetailTabBarController.h
  3. // Apex Mobile
  4. //
  5. // Created by Ray on 14-3-7.
  6. // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "DetailPageViewController.h"
  10. #import "SearchViewController.h"
  11. #import "Constant.h"
  12. @interface DetailTabBarController : UITabBarController<UIAlertViewDelegate>
  13. @property (strong,nonatomic) NSString* function_name;
  14. @property (strong,nonatomic) NSMutableDictionary* params;
  15. @property (strong,nonatomic) NSArray * actions;
  16. -(id) init :(NSString*) function_name actions:(NSArray*)actions params:(NSMutableDictionary*)params;
  17. @end