美文网首页
开发中易用的小技巧

开发中易用的小技巧

作者: coding_chen | 来源:发表于2016-10-24 11:13 被阅读0次
  • 1. 字符串的处理

  • 字符串分割以及将数组组合成字符串

  NSString *string = @"1234.56";
    NSArray *array = [string componentsSeparatedByString:@"."];
    NSString *new =[array componentsJoinedByString:@"."];
  • 2.多级模态界面

  • 开发中有时候需要连续出来多个界面, 但是可能会遇到从最后一个界面直接回到最初的第一个界面, 可以使用下面的方法, 更多关于模态的原理请参考出栈和入栈的原理
  • 在最后一个界面 点击返回的方法中添加如下方法
    UIViewController *rootVC = self.presentingViewController;
    
    while (rootVC.presentingViewController) {
        rootVC = rootVC.presentingViewController;
    }
    [rootVC dismissViewControllerAnimated:YES completion:nil];

相关文章

网友评论

      本文标题:开发中易用的小技巧

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