Command failed due to signal: Abort trap: 6

I faced this issue when used the same constant names in a guard construction

let activityVC = ...
        
guard let activityVC = activityVC else { return }

But xcode didn’t show me any warning for this row.

Leave a Comment