popOverView的实现(iPhone平台)

在iOS上UIPopoverController这个类是只能用在iPad中的,要想在iPhone中实现popover效果,必须得自定义view,当然网上也有这一方面的第三方类库可以提供给我们简便使用,在这里我主要记录一下自己的实现方法(没有封装为类,之后会继续更新的)。
首先,popOverView作为view的拓展,应用非常之广,我们常用的app 中几乎都有其的身影


QQ.png

其将一些操作置入其中利用rightBarButtonItem点击来显示

总体的思路其实很简单,大致分为三个部分
1、添加rightBarButtonItem,设置点击事件A;
2、点击事件A之后弹出两个view:more页面和back页面,more页面显示内容,back页面是其后的蒙版页面。在more页面上加入button(设置tag),利用不同的tag来响应事件
3、实现more页面上的button响应事件

一、添加rightBarButtonItem

- (void)makeRightNavigationItem{
    UIButton *right = [[UIButton alloc] initWithFrame:CGRectMake(0, 0, 20, 18)];
    [right setImage:[UIImage imageNamed:@"tj_help"] forState:UIControlStateNormal];
    [right addTarget:self action:@selector(showOrHiddenMoreBtnView:) forControlEvents:UIControlEventTouchUpInside];
    self.navigationItem.rightBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:right];
   
}

二、more和back页面的设置

- (void)showOrHiddenMoreBtnView:(UIButton *)btn{
    
    _moreBtn = btn;//_moreBtn 类变量,为之后隐藏两个view做好准备
    btn.selected = !btn.selected;
    UIView *back = [self.view viewWithTag:1000];
    UIView *more = [self.view viewWithTag:1001];
    if (btn.selected) {
        
        if (back) {
            [back removeFromSuperview];
        }
        if (more) {
            [more removeFromSuperview];
        }
        
        UIView *backView = [[UIView alloc] initWithFrame:CGRectMake(0,0, self.view.frame.size.width, self.view.frame.size.height)];
        backView.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.3];
        backView.tag = 1000;
        backView.alpha = 0.0;
        [self.view addSubview:backView];
        
        //隐藏手势
        UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(hiddenView)];
        [backView addGestureRecognizer:tap];//back 上
        //more 上的数据源
        NSArray *nameArray = @[@"首页",@"办事指南",@"在线客服",@"客服热线"];
        NSArray *imgArray = @[@"Taiji_onlinedeclare_弹出框-首页@2x",@"Taiji_onlinedeclare_办事指南@2x",@"Taiji_onlinedeclare_在线客服@2x",@"Taiji_onlinedeclare_客服热线@2x"];
        
        CGFloat width = 140;
        CGFloat height = 50;
        CGFloat Y = 18.0;
        UIView *moreView = [[UIView alloc] initWithFrame:CGRectMake(Screen_width-width-9,1, width, height*nameArray.count+Y)];
        moreView.alpha = 0.0;
        moreView.tag = 1001;
        
        UIImageView *img = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, width, height*nameArray.count+Y)];
        img.image = [self resizeImage:@"more_back"];
        [moreView addSubview:img];
        //加入按钮和分割线(高度为1的view实现)
        for (int i =0; i<nameArray.count; i++) {
            UIButton *btn1 = [[UIButton alloc] initWithFrame:CGRectMake(0, Y+height*i, width, height)];
            [btn1 setTitle:nameArray[i] forState:UIControlStateNormal];
            [btn1 setTitleColor:[UIColor darkGrayColor] forState:UIControlStateNormal];
            btn1.titleLabel.font = [UIFont systemFontOfSize:15.0];
            [btn1 setImage:[UIImage imageNamed:imgArray[i]] forState:UIControlStateNormal];
            btn1.imageEdgeInsets = UIEdgeInsetsMake(13, 15, 13, 100);
            btn1.tag = i;
            if (i == 1) {
               [btn1 addTarget:self action:@selector(goToGuide:) forControlEvents:UIControlEventTouchUpInside];
            }else{
              [btn1 addTarget:self action:@selector(openMoreViewAction:) forControlEvents:UIControlEventTouchUpInside];
            }
            [moreView addSubview:btn1];
            
            if (i<nameArray.count-1) {
                UIView *line = [[UIView alloc] initWithFrame:CGRectMake(0, Y+height*(i+1), width, 1)];
                line.backgroundColor = [UIColor groupTableViewBackgroundColor];
                
                [moreView addSubview:line];
            }
            
        }
        
        [self.view addSubview:moreView];
        //出现的动画效果、利用alpha的渐变
        [UIView animateWithDuration:0.3 animations:^{
            moreView.alpha = 1.0;
            backView.alpha = 1.0;
            //            btn.transform = CGAffineTransformMakeRotation(M_PI/4);
            
        }];
        
        
    }else{
        [UIView animateWithDuration:0.3 animations:^{
            more.alpha = 0.0;
            back.alpha = 0.0;
            
        }];
        
    }
    
    =
}

三、实现more页面上的button响应事件

//popoverView上的按钮事件
- (void)openMoreViewAction:(UIButton *)btn{
    [self hiddenView];
    if (btn.tag == 0) {
        //回首页
        [self.navigationController popToRootViewControllerAnimated:YES];
    }else if(btn.tag == 2){
        //在线客服
        [Tool showToast:self.view msg:@"功能开发中。。。。"];
    }
    else{
        //客服热线
        //拨打电话 系统自动弹出提示
        
        UIAlertController *alertController = [UIAlertController alertControllerWithTitle:@"拨打热线" message:phoneCall preferredStyle:UIAlertControllerStyleAlert];
        UIAlertAction *cancelAction = [UIAlertAction actionWithTitle:@"取消" style:UIAlertActionStyleCancel handler:nil];
        UIAlertAction* okAction = [UIAlertAction actionWithTitle:@"呼叫" style:UIAlertActionStyleDefault handler:^(UIAlertAction * _Nonnull action) {
            NSMutableString *str=[[NSMutableString alloc] initWithFormat:@"tel://%@", phoneCall];
            [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
        }];
        [alertController addAction:cancelAction];
        [alertController addAction:okAction];
        [self presentViewController:alertController animated:YES completion:nil];
    }
    
}

//隐藏更多视图
- (void)hiddenView{
    if (!_moreBtn) {
        return;
    }
    if (!_moreBtn.selected) {
        return;
    }
    _moreBtn.selected = NO;
    
    UIView *back = [self.view viewWithTag:1000];
    UIView *more = [self.view viewWithTag:1001];
    [UIView animateWithDuration:0.3 animations:^{
        back.alpha = 0.0;
        more.alpha = 0.0;
        _moreBtn.transform = CGAffineTransformMakeRotation(0);
        
    } completion:^(BOOL finished) {
    }];
    
}

//缩放图片
-(UIImage *)resizeImage:(NSString *)imgName
{
    UIImage *bgImage =  [UIImage imageNamed:imgName];
    //缩放图片
    bgImage = [bgImage stretchableImageWithLeftCapWidth:bgImage.size.width / 2 topCapHeight:bgImage.size.height / 2];
    return bgImage;
}

嘻嘻,其实那个more页面的背景是一张图片,我们在其上加入按钮和充当分割线的view,这样能节省画出形状的时间
最终效果图:

效果图.png
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,657评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,662评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,143评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,732评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,837评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,036评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,126评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,868评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,315评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,641评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,773评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,470评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,126评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,859评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,095评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,584评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,676评论 2 351

推荐阅读更多精彩内容