Guest User

Untitled

a guest
Jan 23rd, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. let downloadsDirectory = FileManager.default.urls(for: .downloadsDirectory, in: .userDomainMask).first!
  2. for i in 1 ... 100000 {
  3.  
  4. let myDir = downloadsDirectory.appendingPathComponent("test",
  5. isDirectory: true) //no memory grow
  6.  
  7. //let myDir = downloadsDirectory.appendingPathComponent("test")
  8. //memory grow!!!
  9. }
Add Comment
Please, Sign In to add comment