A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 余丽丽 高级黑马   /  2015-8-10 21:50  /  441 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

1、弹出提示框
        UIAlertView *alerView1 = [[UIAlertView alloc] initWithTitle:@"充值提醒" message:@"已成功充值10000金币!" delegate:self cancelButtonTitle:@"确认" otherButtonTitles:nil];
        [alerView1 show];
2、监听提示框
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex;


例如:
//监听提示框单击事件
-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
    //操作提示,在最后一题的时候点击下一题弹出的提示框
    if ([alertView.title isEqualToString:@"操作提示"]) {
        //选择购买
        if(buttonIndex==1 || buttonIndex==2)
        {
            NSString * tipStr = [NSString stringWithFormat:@"%@%@",[alertView buttonTitleAtIndex:buttonIndex],@"提示"];
            NSString * messageStr = [NSString stringWithFormat:@"%@%@",[alertView buttonTitleAtIndex:buttonIndex],@"成功!已经开启下一关"];
            UIAlertView *alerView1 = [[UIAlertView alloc] initWithTitle:tipStr message:messageStr delegate:self cancelButtonTitle:@"取消" otherButtonTitles:@"下一关", nil];
             [alerView1 show];
        }
    }
    //付费提示
    if ([alertView.title isEqualToString:@"购买提示"]||[alertView.title isEqualToString:@"暴力破解提示"]) {
     //下一关
        if(buttonIndex==1)
        {
            self.index=0;
            [self nextQues];
        }
    }
   
    //通关提示
    if ([alertView.title isEqualToString:@"通关提示"]) {
        if(buttonIndex==1)[self nextQues];
    }
   
    //提示提醒
    if ([alertView.title isEqualToString:@"提示提醒"]) {
        if(buttonIndex==1 || buttonIndex==2)
        {
            UIAlertView *alerView1 = [[UIAlertView alloc] initWithTitle:@"充值提醒" message:@"已成功充值10000金币!" delegate:self cancelButtonTitle:@"确认" otherButtonTitles:nil];
            [alerView1 show];
            [self setScore:10000 andStr:@"+10000"];
        
            
            
        
        }
    }
   

1 个回复

倒序浏览
感谢分享 小弟还没学到  
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马