English 中文(简体)
模拟器保存文件( Xcode 不更新文件) 在哪里?
原标题:Where does the simulator save files (Xcode not updating files)?

虽然我仔细删除了旧文件并删除了参考文献,但 Xcode 没有更新我更新过的文件( 如数据库、 jpgs 等 ), 我遇到了一些麻烦。 这个问题包括自 Xcode & gt; 4. 2 以来的 Xcode & gt; 。

除了源数据文件夹和数据文件夹之外,模拟器投下数据的地方(可能是隐藏文件)是否存在(可能是隐藏文件)?

~/Library/Application Support/iPhone Simulator/[OS version]/Applications/[appGUID]/

事先多多谢感谢

PS:是的,我通常清理工程,删除导出的数据,删除ABov目录中的所有模拟器文件,删除工程并重新启动mac。仍然似乎有旧数据(如jpg、数据库等)的引用,即使我无法在文件系统中找到它...

最佳回答

Goto Product & gt; & gt;; Clean 构建文件夹。 或者从 iOS 模拟器菜单中重置模拟器。 这样您的应用程序将在模拟器中更新, 并在与您的工程文件完全更新和链接后使用 。

问题回答

在模拟器中卸载应用程序。 这样你就能把所有东西都扔掉。

有时您在 FinishLaunching withOptions 中存在自相矛盾的代码, 您忘了删除这些代码。 请确认该函数只有您想要的对帐单 。

例如,下面的代码将背景设置为白色。 无论您在故事板上添加什么, 您仍然会看到所有的白色 。

   - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:       (NSDictionary *)launchOptions
    {
      self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
      // Override point for customization after application launch.
      self.window.backgroundColor = [UIColor whiteColor];
      [self.window makeKeyAndVisible];
      return YES;
    }

改为:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    return YES;
}

在模拟器中卸载应用程序, 然后转到产品 & gt; & gt; Clean。 这对我有效 。





相关问题
How to change out-of-focus text selection color in Xcode?

Okay, I ll bite. I ve got really pleasant code/window colors set up in Xcode. Ordinarily, my selection color is very visible. When I am doing a project search and iterating through the results, ...

Iphone NSTimer Issue

Hi I am new to objective c. I am trying to make an app for iphone. I have a button on my view, and the click on which the function playSound is called. This is working properly. It does plays the ...

Include a .txt file in a .h in C++?

I have a number of places where I need to re-use some template code. Many classes need these items In a .h could I do something like: #include <xxx.txt> and place all of this code in the ....

Iterating over string/strlen with umlauted characters

This is a follow-up to my previous question . I succeeded in implementing the algorithm for checking umlauted characters. The next problem comes from iterating over all characters in a string. I do ...

Xcode open two editor windows with same file

Is it possible to open the same file in two separate windows in Xcode. I can open a file in one window and the same file in the main Xcode editor window, but I wanted two separate fulltime editor ...

Forcing code signing refresh in Xcode

In our environment, we share resources across multiple projects and platforms. When building for iPhone, only a subset of those resources are needed. Since that subset is still considerable, we have ...

热门标签