I spent hours trying to figure out why I keep getting segmentation error 11 when archiving in Xcode. I found out (by commenting on sections of code) using:
// If I comment out the second line with join, the archive works
var test = ["hello","world"]
let tested = " ".join(test)
Any ideas as to why this is happening and how to fix it?
kevin source
share