Xcode 7 compile error : “Command failed due to signal: Segmentation fault: 11”

前端 未结 25 2441
耶瑟儿~
耶瑟儿~ 2020-12-01 05:37

Yesterday I installed the official Xcode 7 and when I tried to open one of my Swift projects, appeared an alert saying that the new Xcode version wants to update my swift co

25条回答
  •  无人及你
    2020-12-01 06:00

    This indicates that some Required method/func is missing from your code. In my case I was using ObjectMapper and in my class I was forgot to include required init() method which causes this "Command failed due to signal: Segmentation fault: 11"

    required init?(_ map: Map) {
    
    }
    

提交回复
热议问题