开发

项目框架的搭建

2015-07-28  本文已影响329人  Little_Dragon
- (void)setUpOneChildViewController:(UIViewController *)vc image:(UIImage *)image selImage:(UIImage *)selImage title:(NSString *)title
{
    // 设置导航条 (各自控制器,来控制自己导航条的内容)
    vc.navigationItem.title = title;
   ...
    // 如果想要一个控制器既展示自己的view,同时想增加一个导航条,直接包装成导航控制器
    // 包装成导航控制器
    UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc];

... // 一般为导航条的设置内容
    [self addChildViewController:nav];
}

+ (void)initialize
{
    // 如果是这个类调用了方法,则执行以下设置
    if(self == [LXLNavigationController class])
    {
    //    导航条的设置
    // 设置导航条的背景,文字颜色

    // 谁用我的导航控制器,只设置使用自己导航控制器下的导航条

    // 获取整个app里所有导航条外观的标志
//    UINavigationBar *bar = [UINavigationBar appearance];

    // 获取当前类下的导航条
    // self->LXLNavigationController
    UINavigationBar *bar = [UINavigationBar appearanceWhenContainedIn:self, nil];


    // 设置导航条背景图片,必须填UIBarMetricsDefault
    // 使用UIBarMetricsDefault,导航控制器的子控制器view的尺寸不包括导航条部分
    [bar setBackgroundImage:[UIImage imageNamed:@"NavBar64"] forBarMetrics:UIBarMetricsDefault];


    // 设置导航条文字颜色
    NSMutableDictionary *dict = [NSMutableDictionary dictionary];
    // 设置颜色
    dict[NSForegroundColorAttributeName] = [UIColor whiteColor];
    dict[NSFontAttributeName] = [UIFont boldSystemFontOfSize:22];
    [bar setTitleTextAttributes:dict];
}

}

+ (void)show
{
    LXLCover *cover = [[self alloc] init];

    cover.frame = [UIApplication shareApplication].keyWindow.bounds;

    cover.backgroundColor = [UIColor blackColor];

    cover.alpha = 0.5;

    // 获取主窗口
    [[UIApplication shareApplication].keyWindow addSubview:cover];
}
+ (void)hide
{
    // 隐藏蒙板
    // 遍历主窗口上的子控件,只要是蒙版类的,就进行移除,这样就把蒙版进行移除了
    for (UIView *childView in [UIApplication shareApplication].keyWindow.subviews) {
        if ([childView isKindOfClass:self]) { // 是蒙板
            [childView removeFromSuperview];
        }
    }
}

+ (instancetype)showInPoint:(CGPoint)point
{
    // xib 中加载pop
   LXLPopMenu *menu =  [[NSBundle mainBundle] loadNibNamed:@"LXLPopView" owner:nil options:nil][0];
    // 从外界的到显示的中心点
    menu.center = point;
    // 将其加载到 主窗口上,主要是为了显示在最外边
    [[UIApplication shareApplication].keyWindow  addSubview:menu];

    return menu;

}

// 隐藏
- (void)hideInPoint:(CGPoint)point
{
//  执行0.5s动画
    [UIView animateWithDuration:.5 animations:^{
// 设置缩小至的中心点
        self.center = point;

        // 直接修改父控件的尺寸,是不会影响子控件
//        self.bounds = CGRectMake(0, 0, 1, 1);

        // 如果设置0,控件直接缩放为0,没有动画,如果想要动画,搞一个最小值
        self.transform = CGAffineTransformMakeScale(0.01, 0.01);

    } completion:^(BOOL finished) {
// 动画完成后移除
        [self removeFromSuperview];

    }];
}

// 点击关闭按钮,调用
- (IBAction)close:(id)sender {

    // 通知代理做事情,告诉代理点击了关闭
    if ([_delegate respondsToSelector:@selector(popMenuDidClickCloseMenu:)]) {
        [_delegate popMenuDidClickCloseMenu:self];
    }
}
Snip20150725_5.png Snip20150725_6.png
// 点击活动按钮的时候调用
- (void)activity
{
    // 弹出蒙板,
    // 只要以后想要把一个控件显示在最外边,就添加到窗口,提供一个show方法
    [LXLCover show];

    // 弹出pop菜单
    LXLPopView *menu = [LXLPopView showInPoint:self.view.center];

    menu.delegate = self;

}


// block:作用保存一段代码

#pragma mark - LXLPopViewDelegate

// 点击菜单上关闭按钮的时候就会调用
- (void)popMenuDidClickCloseMenu:(LXLPopView *)menu
{
    [UIView animateWithDuration:0 animations:nil completion:^(BOOL finished) {

    }];

    // 定义移动完成的block,保存移动完成的代码
    void (^completion)() = ^{

        // 当移动完成的时候,把蒙板消失
        [LXLCover hide];
    };

    // block精髓:可以当做参数去用。

    // 菜单移动到某个位置,并且缩放。
    [menu hideInPoint:CGPointMake(44, 44) completion:completion];

//    [menu hideInPoint:CGPointMake(44, 44) completion:^(){
//
//    }];


}

// 隐藏
- (void)hideInPoint:(CGPoint)point completion:(void (^)())completion
{
    /*
     void (^completion)() = ^{

     // 当移动完成的时候,把蒙板消失
     [LXLCover hide];
     };
     */
    [UIView animateWithDuration:.5 animations:^{

        self.center = point;

        // 直接修改父控件的尺寸,是不会影响子控件
//        self.bounds = CGRectMake(0, 0, 1, 1);

        // 如果设置0,控件直接缩放为0,没有动画,如果想要动画,搞一个最小值
        self.transform = CGAffineTransformMakeScale(0.01, 0.01);

    } completion:^(BOOL finished) {

        [self removeFromSuperview];
//        [LXLCover hide];

        if (completion) {

            completion();
        }

        // 移除蒙板
//        [LXLCover hide];

    }];
}

上一篇下一篇

猜你喜欢

热点阅读