我是stackoverflow的新手,但我想问一下在编译带有一些ObjC库的swift项目时遇到的编译器错误。
`
private void dataGridView1_CellMouseDown(object sender, DataGridViewCellMouseEventArgs e)
{
if (e.Button == MouseButtons.Left )
{
this.dataGridView1.Rows[e.RowIndex].DefaultCellStyle.BackColor = Color.Red;
}
}
`
该项目在Xcode 6.2和之前编译并正常工作,但是当我尝试在Xcode 6.3和6.3.1上编译它时,由于信号而导致命令失败:分段错误11.有人可以帮助我吗?谢谢。
编辑:只是为了您的信息,我目前在一台Mac,Xcode 6.2和6.3.1中使用两个Xcode,因为Xcode 6.3.x无法编译我的项目所以我仍在使用Xcode 6.2,同时尝试修复对于6.3.x。