美文网首页iOS
iOS 那些年自己写过的bug

iOS 那些年自己写过的bug

作者: NieFeng1024 | 来源:发表于2016-11-02 20:46 被阅读5次

    最近脑子越来越不够用了,好记性不如啪啪啪,记录一下自己写过的bug

    1. 没用懒加载 打开沙盒看到数据只有 2k,剁手;
      self.dataVoices = [NSMutableData data];(删除)
      [self.dataVoices appendData:data];
      [self.dataVoices writeToFile:self.fileName atomically:YES];
      一定要用懒加载!!!

    相关文章

      网友评论

        本文标题:iOS 那些年自己写过的bug

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