我正在制作一个项目xcode-10,然后在苹果商店中提交应用程序后更新了Xcode -10.2,但是每次都拒绝“我们在iOS 10,iPhone 6、6s,7和7+上测试了该应用程序,并且该应用程序运行良好在IPV6网络中。
但给了Firebase crashlytics问题{
StartCoroutine(colorlerpin7());
yield return null;
}
public IEnumerator colorlerpin7()
{
float ElapsedTime = 0.0f;
float TotalTime = 1f;
while (ElapsedTime < TotalTime)
{
// fades out atipical
ElapsedTime += Time.deltaTime;
fluidpef.GetComponent<Renderer>().material.color = Color.Lerp(new
Color(1f, 1f, 1f, 1f), new Color(1f, 1f, 1f, 0f), (ElapsedTime /
TotalTime));
yield return null;
}
}
。
EXC_BREAKPOINT (SIGTRAP)