CustomTabbarController.m 13.1 KB
Newer Older
曹云霄's avatar
曹云霄 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141

//
//  CustomTabbarController.m
//  Lighting
//
//  Created by 曹云霄 on 16/4/27.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import "CustomTabbarController.h"
#import "Toolview.h"
#import "AppDelegate.h"
#import "SceneLibraryViewController.h"
#import "ProductLibraryViewController.h"
#import "AboutViewController.h"
#import "AllCustomerViewController.h"
#import "CustomerOrderViewController.h"
#import "UserViewController.h"
#import "ChangePasswordViewController.h"
#import "SearchViewController.h"
#import "BaseViewController.h"
#import "QRViewController.h"
#import "ExperienceCentreViewController.h"
#import "RebateViewController.h"
#import "GuideIntegralViewController.h"
#import "LearningCenterMainViewController.h"
#import "AnnouncementViewController.h"
#import "MessageViewController.h"
#import "HomeViewController.h"
#import "CustomWKWebViewController.h"

@interface CustomTabbarController () <TabbarButtonClickdelegate, ChangpasswordDelegate, CancelButtondelegate, UITextFieldDelegate>

@property (nonatomic, strong) NSArray *identifierArray;

/**
 *  保存按钮引用
 */
@property (nonatomic, strong) UIButton *Newbutton;

/**
 *  控制器数组
 */
@property (nonatomic, strong) NSMutableArray *vcArray;

/**
 *  工具栏
 */
@property (nonatomic, strong) Toolview *toolview;

@end

@implementation CustomTabbarController

/**
 *  UIStoryboard Identifier数组
 *
 *  @return NSArary
 */
- (NSArray *)identifierArray {
    if (_identifierArray == nil) {

        _identifierArray = [NSArray arrayWithObjects:@"HomeViewController", @"SearchViewController", @"ShoppingViewController", @"ClientViewController", @"RebateViewController", @"GuideIntegralViewController", @"AnnouncementViewController", @"MessageViewController", @"SceneLibraryViewController", @"ProductLibraryViewController", @"AllCustomerViewController", @"CustomerOrderViewController", @"LearningCenterMainViewController", @"AboutViewController", nil];
    }
    return _identifierArray;
}

- (NSMutableArray *)vcArray {
    if (!_vcArray) {
        _vcArray = [NSMutableArray array];
    }
    return _vcArray;
}

- (void)viewWillAppear:(BOOL)animated {
    [super viewWillAppear:animated];
    [self.selectedViewController beginAppearanceTransition:YES animated:animated];
}

- (void)viewDidAppear:(BOOL)animated {
    [super viewDidAppear:animated];
    [self.selectedViewController endAppearanceTransition];
}

- (void)viewWillDisappear:(BOOL)animated {
    [super viewWillDisappear:animated];
    [self.selectedViewController beginAppearanceTransition:NO animated:animated];
}

- (void)viewDidDisappear:(BOOL)animated {
    [super viewDidDisappear:animated];
    [self.selectedViewController endAppearanceTransition];
}

- (void)viewDidLoad {
    [super viewDidLoad];

    [self uiConfigAction];
    [self addViewcontroller];
    [self addNSNotification];
}

#pragma mark -UI
- (void)uiConfigAction {
    self.tabBar.frame = CGRectMake(ZERO, ZERO, ScreenWidth, NavigationHeight);
    self.toolview = [[Toolview alloc] initWithFrame:CGRectMake(ZERO, ZERO, ScreenWidth, NavigationHeight)];
    self.toolview.delegate = self;
    self.toolview.inputField.delegate = self;
    self.delegate = self;
    [self.view addSubview:self.toolview];
    self.tabBar.hidden = YES;
}

#pragma mark -监听通知
- (void)addNSNotification {
    //显示体验中心
    [Notification addObserver:self selector:@selector(showFollowHeart:) name:OPENFOLLOWHEARTVC object:nil];
    //显示体验中心3D
    [Notification addObserver:self selector:@selector(show3DFollowHeart:) name:OPENFOLLOWHEART3DVC object:nil];
    //显示消息界面
    [Notification addObserver:self selector:@selector(showMessageController:) name:NSNOTIFICATION_MESSAGE object:nil];
    //app未启动点击通知回调
    NSDictionary *dict = [UserDefault objectForKey:NSNOTIFICATION_MESSAGE];
    if (dict) {
        self.selectedIndex = 6;
        [Notification postNotificationName:NSNOTIFICATION_MESSAGE object:dict];
        [UserDefault removeObjectForKey:NSNOTIFICATION_MESSAGE];
    }
}

#pragma mark -显示消息界面
- (void)showMessageController:(NSNotification *)object {
    self.selectedIndex = 6;
}

#pragma mark -添加controller到viewControllers
- (void)addViewcontroller {
    NSMutableArray *controllerArray = [NSMutableArray array];
    for (int i = 0; i < self.identifierArray.count; i++) {

        NSString *controllString = self.identifierArray[i];
142
        BaseViewController *control = nil;
曹云霄's avatar
曹云霄 committed
143 144
        // 公告
        if ([controllString isEqualToString:@"AnnouncementViewController"] || [controllString isEqualToString:@"MessageViewController"]) {
145
            control = [NSClassFromString(controllString) viewControllerWithStoryBoardType:STORYBOARD_TYPE_ANNOUNCEMENT];
曹云霄's avatar
曹云霄 committed
146
        } else if ([controllString isEqualToString:@"LearningCenterMainViewController"]) {
147
        // 学习中心
148
            control = [NSClassFromString(controllString) viewControllerWithStoryBoardType:STORYBOARD_TYPE_LEARNINGCENTER];
曹云霄's avatar
曹云霄 committed
149
        } else if ([controllString isEqualToString:@"GuideIntegralViewController"]) {
150
        // 积分
151
            control = [NSClassFromString(controllString) viewControllerWithStoryBoardType:STORYBOARD_TYPE_GUIDEINTERGRAL];
曹云霄's avatar
曹云霄 committed
152
        } else {
153
            control = [NSClassFromString(controllString) viewControllerWithStoryBoardType:STORYBOARD_TYPE_MAIN];
曹云霄's avatar
曹云霄 committed
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
        }
        UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:control];
        [self.vcArray addObject:nav];
        [controllerArray addObject:control];
    }
    self.viewControllers = self.vcArray;
    SHARED_APPDELEGATE.allControllerArray = controllerArray;
    SHARED_APPDELEGATE.tabBarController = self;
    self.selectedIndex = 0;
}

#pragma mark -移除系统自带的UITabBarButton
- (void)viewWillLayoutSubviews {
    [super viewWillLayoutSubviews];
    for (UIView *view in self.tabBar.subviews) {
        if ([view isKindOfClass:NSClassFromString(@"UITabBarButton")]) {
            [view removeFromSuperview];
        }
    }
}

#pragma amrk - TabbarButtonClickdelegate代理
- (void)buttonClickAction:(NSInteger)Buttontag withButton:(UIButton *)button {
    [self.toolview.inputField resignFirstResponder];
    [self dismissViewControllerAnimated:NO completion:nil];
    _Newbutton = button;
    switch (Buttontag) {
        case MENU:
            [SHARED_APPDELEGATE.mmdrawer toggleDrawerSide:MMDrawerSideRight animated:YES completion:nil];
            break;
        case MESSAGE: {
            self.selectedIndex = 7;
        } break;
        case NOTICE: {
            self.selectedIndex = 6;
        } break;
        case SHOPPING_GUIDE:
        {
            UserViewController *userVC = [[UserViewController alloc] init];
            userVC.delegate = self;
            userVC.preferredContentSize = CGSizeMake(260, 230);
            userVC.modalPresentationStyle = UIModalPresentationPopover;
            UIPopoverPresentationController *pop = userVC.popoverPresentationController;
            pop.permittedArrowDirections = UIPopoverArrowDirectionAny;
            pop.sourceView = userVC.view;
            pop.barButtonItem = [[UIBarButtonItem alloc] initWithCustomView:button];
            [self presentViewController:userVC animated:YES completion:nil];
        } break;
        case CUSTOMER:
            self.selectedIndex = 3;
            break;
        case SHOPPING_CAR:
            //必须设置当前客户才能跳转到购物车
            if (![Shoppersmanager manager].currentCustomer) {
                [XBLoadingView showHUDViewWithText:@"必须设置当前客户才能访问购物车"];
            } else {
                self.selectedIndex = 2;
            }
            break;
        default:
            break;
    }
}

218

曹云霄's avatar
曹云霄 committed
219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
#pragma mark -修改密码点击
- (void)changPasswordButtonClick {
    [self dismissViewControllerAnimated:NO
                             completion:^{
                                 ChangePasswordViewController *changpassword = [[ChangePasswordViewController alloc] init];
                                 changpassword.delegate = self;
                                 changpassword.preferredContentSize = CGSizeMake(260, 180);
                                 changpassword.modalPresentationStyle = UIModalPresentationPopover;
                                 UIPopoverPresentationController *pop = changpassword.popoverPresentationController;
                                 pop.permittedArrowDirections = UIPopoverArrowDirectionAny;
                                 pop.sourceView = changpassword.view;
                                 pop.barButtonItem = [[UIBarButtonItem alloc] initWithCustomView:_Newbutton];
                                 [self presentViewController:changpassword animated:YES completion:nil];
                             }];
}

#pragma mark -取消按钮
- (void)cancelButtonClick {
    [self dismissViewControllerAnimated:NO
                             completion:^{
                                 UserViewController *userVC = [[UserViewController alloc] init];
                                 userVC.delegate = self;
                                 userVC.preferredContentSize = CGSizeMake(260, 230);
                                 userVC.modalPresentationStyle = UIModalPresentationPopover;
                                 UIPopoverPresentationController *pop = userVC.popoverPresentationController;
                                 pop.permittedArrowDirections = UIPopoverArrowDirectionAny;
                                 pop.sourceView = userVC.view;
                                 pop.barButtonItem = [[UIBarButtonItem alloc] initWithCustomView:_Newbutton];
                                 [self presentViewController:userVC animated:YES completion:nil];
                             }];
}

251

曹云霄's avatar
曹云霄 committed
252 253 254 255 256 257 258 259
#pragma mark -二维码扫描
- (void)qrcodeButtonClick {
    WS(weakSelf);
    // 判断应用是否有使用相机的权限
    if ([BaseViewController determineCameraPermissions]) {
        QRViewController *qrVC = [[QRViewController alloc] initWithScanCompleteHandler:^(NSString *url) {
            [weakSelf dismissViewControllerAnimated:YES
                                         completion:^{
曹云霄's avatar
曹云霄 committed
260
                                             ProductLibraryViewController *product = [SHARED_APPDELEGATE.allControllerArray objectAtIndex_opple:8];
曹云霄's avatar
曹云霄 committed
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
                                             product.barcode = url;
                                             SHARED_APPDELEGATE.lineView.hidden = YES;
                                             weakSelf.selectedIndex = 8;
                                         }];
        }];
        dispatch_async(dispatch_get_main_queue(), ^{
            [weakSelf presentViewController:qrVC animated:YES completion:nil];
        });
    }
}

#pragma mark -搜索框代理方法
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField {
    self.selectedIndex = 1;
    return YES;
}

#pragma mark -Search按钮
- (BOOL)textFieldShouldReturn:(UITextField *)textField {
    if (![BaseViewController isBlankString:textField.text]) {
        [textField resignFirstResponder];
        [Notification postNotificationName:SEARCHSTRING object:textField.text];
    }
    return YES;
}

#pragma mark -自定义选中
- (void)setSelectedIndex:(NSUInteger)selectedIndex {
    [super setSelectedIndex:selectedIndex];
曹云霄's avatar
曹云霄 committed
290
    [self didSelectNavigationController:[SHARED_APPDELEGATE.allControllerArray objectAtIndex_opple:selectedIndex]];
曹云霄's avatar
曹云霄 committed
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
}

#pragma mark -返回根视图控制器
- (void)didSelectNavigationController:(UIViewController *)viewController {
    if ([[viewController.navigationController.viewControllers firstObject] isKindOfClass:NSClassFromString(@"UIMoreListController")]) {
        [viewController.navigationController popToViewController:viewController.navigationController.viewControllers[1] animated:YES];
    } else {
        [viewController.navigationController popToRootViewControllerAnimated:YES];
    }
}

#pragma mark -  切换tabbar selectedIndex
- (void)switchSelectedIndex:(NSInteger)selectedIndex {
    [self.toolview switchLineViewOrigin:selectedIndex - 100];
}

#pragma mark -推出体验中心控制器
- (void)showFollowHeart:(NSNotification *)objc {
309
    ExperienceCentreViewController *ExperienceCenter = [ExperienceCentreViewController viewControllerWithStoryBoardType:STORYBOARD_TYPE_MAIN];
曹云霄's avatar
曹云霄 committed
310 311 312 313 314 315 316 317 318
    ExperienceCenter.modalPresentationStyle = UIModalPresentationOverFullScreen;
    UIPopoverPresentationController *popover = ExperienceCenter.popoverPresentationController;
    popover.sourceView = ExperienceCenter.view;
    [self presentViewController:ExperienceCenter animated:YES completion:nil];
}

#pragma mark -推出3D体验中心控制器
- (void)show3DFollowHeart:(NSNotification *)objc
{
319
    TOConsumerEntity *user = [Customermanager manager].model.consumer;
曹云霄's avatar
曹云霄 committed
320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
    if (user == nil) {
        ShowAlertView(@"提示", @"请先指定当前客户", @[@"我知道了"], UIAlertControllerStyleAlert, nil);
        return;
    }
    LoginResult *shopper = [Shoppersmanager manager].shoppers;
    CustomWKWebViewController *webView = [[CustomWKWebViewController alloc] init];
    webView.type = Announcement;
    webView.urlString = [NSString stringWithFormat:BAJIE3D,user.fid,shopper.employee.departid,shopper.employee.fid];
    [self presentViewController:webView animated:YES completion:nil];
}















@end