美文网首页
一句话笔记(31)(presentingViewControll

一句话笔记(31)(presentingViewControll

作者: 天空中的球 | 来源:发表于2017-10-18 17:17 被阅读174次

    一句话笔记,某段时间内遇到或看到的某个可记录的点。 2017-10-18

    • iOS 连续多次 Present 之后,回到最初的viewController
    • iOS 连续两次 Present 时出现的问题
    • iOS 中 GET 请求中,某些特殊字符的处理
    一、 iOS 连续多次 Present 之后,回到最初的ViewController
    • 1、当然是一个个 DismissViewController 啦

    通过代理或者 Block 去返回上一级的 VC,从而达到效果。

    • 2、或者说利用 presentingViewController 属性来完成的。
    [self.presentingViewController.presentingViewController dismissViewControllerAnimated:YES completion:nil];
    

    当然这个是可以优化下的

    UIViewController *viewController = self;
    while (viewController.presentingViewController) {
          viewController = viewController.presentingViewController;
    }
    [viewController dismissViewControllerAnimated:YES completion:nil];
    

    注意对 下面两个属性理解下:

    // The view controller that was presented by this view controller or its nearest ancestor.
    @property(nullable, nonatomic,readonly) UIViewController *presentedViewController  NS_AVAILABLE_IOS(5_0);
    
    // The view controller that presented this view controller (or its farthest ancestor.)
    @property(nullable, nonatomic,readonly) UIViewController *presentingViewController NS_AVAILABLE_IOS(5_0);
    

    举例:

    [firstVC presentViewController:secondVC animated:NO completion:nil];
    

    firstVC 的 presentedViewController 就是 secondVC.
    secondVC 的 presentingViewController 就是 firstVC.

    所以常规下,我们用方法二就可以啦,但是我们却是用的是 方法一,因为我们的 PresentVC 都是通过 initWithRootViewController 的方式,所以方法二不符合。

    二、 iOS 连续两次 Present 时出现的视图BUG
    错误显示

    上面是我们一个 UIAlertController , 出现这个原因是,在一个 VC 中连续 Present 两个VC。

     [self presentViewController:alertVC animated:NO completion:nil];
     [self presentViewController:testVC animated:NO completion:nil];
    

    在 dismiss testVC 之后就变成这个样子啦,所以就是连续的,当然这种情况不是故意的,是某种情况下特殊触发的。

    所以解决这个问题的方法,可以直接在这个触发出做出判断或者重写 presentViewController 这个方法

    if (self.presentingViewController) {
           return;
    }
    

    哈哈,还是用 presentingViewController 属性。

    三、 iOS 中 GET 请求中,某些特殊字符(?!@#$^&%*+,:;='"`<>()[]{}/\| )的转义处理。

    在 GET 请求中,我们对某些特殊字符是需要转义处理的,否则就识别不出来啦。

    • CFURLCreateStringByAddingPercentEscapes 方法,非法字符是 : @"?!@#$^&%*+,:;='\”<>()[]{}/\| "
    urlStr = (NSString *)CFBridgingRelease(CFURLCreateStringByAddingPercentEscapes(
            kCFAllocatorDefault, 
            (CFStringRef) urlStr,
             nil, 
            CFSTR("?!@#$^&%*+,:;='\"`<>()[]{}/\\| "),
            kCFStringEncodingUTF8)
    );
    
    • stringByAddingPercentEncodingWithAllowedCharacters
    NSCharacterSet *allowedCharacters = [[NSCharacterSet characterSetWithCharactersInString: @"?!@#$^&%*+,:;='\"`<>()[]{}/\\| "] invertedSet];
     NSString *encodedUrl = [urlStr stringByAddingPercentEncodingWithAllowedCharacters:allowedCharacters];
    

    PS : stringByAddingPercentEscapesUsingEncoding 已经在 iOS9.0 被抛弃了

    [urlstr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
    

    相关文章

      网友评论

          本文标题:一句话笔记(31)(presentingViewControll

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