我一直在浏览一些React Native课程并将所有应用程序存储在'projects'文件夹中。一切都运行良好,但突然间,当我在特定项目的文件夹中运行 private void btn_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == System.Windows.Forms.MouseButtons.Left)
{
MouseDownLocation = e.Location;
}
}
private void btn_MouseMove(object sender, MouseEventArgs e)
{
if (e.Button == System.Windows.Forms.MouseButtons.Left)
{
this.Left = e.X + this.Left - MouseDownLocation.X;
this.Top = e.Y + this.Top - MouseDownLocation.Y;
}
}
时,我似乎遇到了包装器的一些问题,而不是自动启动。弹出模拟器,但它只显示我以前的应用程序,并且不包含我刚用react-native run-ios
创建的新应用程序。我一直在寻找,我似乎无法找到任何解决方案。有什么想法吗?
这是终端中显示的最后一行:
react-native init new-app
答案 0 :(得分:3)
因此经过一些挖掘和测试后,我意识到这个问题与Sierra的新功能有关,它将您的文件存储在iCloud Drive中。不确定具体细节,但当我关闭此功能时问题得到了解决。