美文网首页iOS Developer
dismissViewController方法做界面传值及调用上

dismissViewController方法做界面传值及调用上

作者: 灰客 | 来源:发表于2017-04-11 17:59 被阅读0次

    dismissViewControllerAnimated后,completion传值给上一个父视图方法

    视图firstView和secendView,点击firstView上面的按钮presentviewcontroller出secendView;secendView上有个按钮,点击按钮dismissViewControllerAnimated,并将某个值传给firstView,或不直接在firstView里面的viewWillAppear里面调用方法,而是直接通过在dismissViewControllerAnimated completion里面编辑代码块调用firstView里面的任何方法,该怎么做?

    这个问题其实并不复杂,如果你知道如何使用NSNotificationCenter实现起来还是非常简单的。

    先说一下,secendView在dismissViewControllerAnimated后,如何在进入firstView后,自动调用firstView里面的任何方法
    第一步:在secendView里面,点击按钮时调用一个方法,该方法为:
    -(void)secendAction{
    [self dismissViewControllerAnimated:YES completion:^{
    [[NSNotificationCenter defaultCenter] postNotificationName:@"do" object:self];
    }];

    }
    上面代码是将secendView dismissViewControllerAnimated掉,然后自动注册一个名为do的通知
    注册了这个名为的通知,你就可以在任何.m文件里面通过以下代码调用到了:
    NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
    [nc addObserver:self
    selector:@selector(handleColorChange:)
    name:@"do"
    object:nil];
    上面的代码的意思就是,先找到已经注册过的名为do的通知,然后再自动调用handleColorChange去处理,
    所以:
    第二步:在firstView里面的viewWillAppear方法里面写入以下代码:
    NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
    [nc addObserver:self
    selector:@selector(handleColorChange:)
    name:@"do"
    object:nil];
    handleColorChange方法为:
    -(void)handleColorChange:(id)sender{
    [self firstView里面方法]
    }
    看明白了吧?在secendView里面我们不直接调用firstView里面的方法,而是通过通知来让firstView自动调用自己里面的某个方法。
    通过通知可以让不同.m文件之间进行方法和参数的传递

    ok就下来说一下如何在dismissViewControllerAnimated后将secendView里面的值传递给firstView
    第一步:在secendView里面,点击按钮时调用一个方法,该方法为:
    -(void)secendAction{
    [self dismissViewControllerAnimated:YES completion:^{
    [tools showToast:@"图片信息提交成功" withTime:1500 withPosition:iToastGravityCenter];
    [[NSNotificationCenter defaultCenter] postNotificationName:@"do" object:self userInfo:dictionary];
    }];

    }
    userInfo:dictionary里面的dictionary就是你要传递的字典对象的值
    第二步:在firstView里面的viewWillAppear方法里面写入以下代码:
    NSNotificationCenter nc = [NSNotificationCenter defaultCenter];
    [nc addObserver:self
    selector:@selector(handleColorChange:)
    name:@"do"
    object:nil];
    handleColorChange方法为:
    -(void)handleColorChange:(NSNotification
    )sender{
    NSLog(@"%@",sender);
    [self firstView里面方法]
    }
    -(void)handleColorChange:(NSNotification*)sender里面的sender就是你在secendView里面所传递的字典对象的值,简单吧?!

    *********************重点来了*********************

    我在解析数据的时候发现一个问题,我存进去的是一个可变数组,但是获取到的是一个通知类数据,我打印出来了是这样的

    33D01025-08DC-4AD5-86FE-B3B57CD59EE7.png

    我看到是一个字典装的2个键值对,直接使用了

    把这个(NSNotification*)sender强转成dict来去这个值:

    NSDictionary * dict = (NSDictionary *)sender;

    self.mArray = dict[@"object"];
    

    然而却失败了
    我在网上找到了相关的解释帖子,用下面的方法可以成功:

    NSMutableArray * objectArr = [[NSMutableArray alloc]init];

    objectArr = sender.object;(.后面就是跟的图片上面这个NSNotification*的键名,我这里是存到了object里面了)
    
    self.mArray = objectArr;
    

    原贴:http://blog.csdn.net/iot_li/article/details/49093601

    相关文章

      网友评论

        本文标题:dismissViewController方法做界面传值及调用上

        本文链接:https://www.haomeiwen.com/subject/icdyattx.html