English 中文(简体)
试图从工程中删除音频文件
原标题:trying to remove audio file from project
  • 时间:2012-05-24 22:44:02
  •  标签:
  • ios

我似乎无法摆脱iOS工程中的音频文件。 我把它放在我的支持文件文件夹中, 但删除了它( 将其移至垃圾桶, 而不仅仅是参考 ) 。

我的《详细 Victory》仍以这行代码来表示:

NSArray* soundFilesArray = [[NSBundle mainBundle] pathsForResourcesOfType:@"wav" inDirectory:nil];

我敢肯定,这很简单,但我还是比较新,所以对 XCode 如何找到文件感到困惑。在XCode 工程中,我到处查看了XCode 工程之后,我甚至搜索了所有文件夹(在终端中),也找不到任何东西。我也做了清洁(Production & gt; clean) 。

最佳回答

文件在您的. ap 文件中缓存。 要清除此文件, 请执行此步骤 :

(1) 开放组织者

2) 点击项目

3) 在左面板查找您的工程并单击

(4) (4) 中心面板上删除时的 CLick 上删除

5),5),5),5),(可选择)),5),5),5)(可选择),如果您想要在查找器中看到,请单击“向箭头”,“向箭头”路径之后的“向箭头”

6) 构建您的项目。 XCode 将再次复制您的资源 。

问题回答

尽管您已经从您的工程中移除了文件, 但它已经被复制到您正在建设的设备( 或模拟器, 或iPhone 或iPad ) 。 从设备中删除了应用程序, 并且所有文件都将从它中删除 。 然后, 既然您已经清理了 XCode 工程以确保文件真的消失, 如果您重建您的测试设备, 文件应该永远消失 。





相关问题
List Contents of Directory in a UITableView

I am trying to list the contents of Ringtones directory in a TableView, however, I am only getting the last file in the directory in ALL cells, instead of file per cell. This is my code: - (...

iPhone NSUserDefaults persistance difficulty

In my app i have a bunch of data i store in the NSUserdefaults. This information consists of an NSObject (Object1) with NSStrings and NSNumbers and also 2 instances of yet another object (Object2). ...

Writing a masked image to disk as a PNG file

Basically I m downloading images off of a webserver and then caching them to the disk, but before I do so I want to mask them. I m using the masking code everyone seems to point at which can be found ...

Resize UIImage with aspect ratio?

I m using this code to resize an image on the iPhone: CGRect screenRect = CGRectMake(0, 0, 320.0, 480.0); UIGraphicsBeginImageContext(screenRect.size); [value drawInRect:screenRect blendMode:...

Allowing interaction with a UIView under another UIView

Is there a simple way of allowing interaction with a button in a UIView that lies under another UIView - where there are no actual objects from the top UIView on top of the button? For instance, ...

热门标签