| 12345678910111213141516171819 |
- //
- // DetailTabBarController.h
- // Apex Mobile
- //
- // Created by Ray on 14-3-7.
- // Copyright (c) 2014年 United Software Applications, Inc. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "DetailPageViewController.h"
- #import "SearchViewController.h"
- #import "Constant.h"
- @interface DetailTabBarController : UITabBarController<UIAlertViewDelegate>
- @property (strong,nonatomic) NSString* function_name;
- @property (strong,nonatomic) NSMutableDictionary* params;
- @property (strong,nonatomic) NSArray * actions;
- -(id) init :(NSString*) function_name actions:(NSArray*)actions params:(NSMutableDictionary*)params;
- @end
|