XCODE 出现 The operation couldn't be completed.(LaunchServicesError error 0.)错误修复

今天在利用XCode开发苹果APP时想使用脚本来存储一些语言文字信息,在完成环境配置和搭建以后调用Lua脚本成功。但是该Lua脚本把所有的内容都包含在一起,不太符合文件独立的要求,就把文件拆成了两部分,通过include之类的Lua关键字进行关联。调整完毕以后运行调试,出现了Lua引擎无法搜索到被包含的脚本的错误,于是就开始折腾了,一会用相对包含关系包含文件,一会又用文件引用方式使用文件,最终问题没有得到解决但是出了一个新问题

对比了工程版本修改记录也没发现问题原因,求助了万能的百度(吐啊吐啊~~~),结果没有找到答案。百无聊赖之下运行了下Clean然后在Build下,问题奇迹般的消失了!!!OMG!

分析原因

回忆了自己折腾时的步骤,基本定位在资源文件加载方式变化上引起该问题,导致编译的缓存数据中含有残留的无效数据。重新编译以后清空了错误数据,使得程序能够正常跑起来了。

XCODE 出现 The operation couldn't be completed.(LaunchServicesError error 0.)错误修复

时间: 2024-10-25 01:44:40

XCODE 出现 The operation couldn't be completed.(LaunchServicesError error 0.)错误修复的相关文章

The operation couldn’t be completed. (LaunchServicesError error 0.)

The operation couldn’t be completed. (LaunchServicesError error 0.) 每次运行都会报这错误,但是只要clear下工程就可以运行.搞得每次都要clear工程才能运行了.有没有大神说下原因 图片:522265E3-097D-40E6-AF44-7F675B007D27.png 

解决Xcode 5下使用SVN出现 The operation couldn’t be completed. (NSURLErrorDomain error -1012.) 问题

解决Xcode 5下使用SVN出现 The operation couldn’t be completed. (NSURLErrorDomain error -1012.) 问题 2014年March月25日 / Linux/Unix / 浏览:264 / 暂无评论 /   使用Xcode5 SVN 出现问题 The operation couldn’t be completed. (NSURLErrorDomain error -1012.) 解决方法: 打开终端 然后输入如下命令 svn l

Xcode The operation couldn’t be completed. (NSURLErrorDomain error -1012.)

使用Xcode SVN 出现问题 The operation couldn’t be completed. (NSURLErrorDomain error -1012.) 解决方法: 打开终端 然后输入如下命令 svn ls xxxx (xxx是你SVN Server的地址) 这里询问你是否允许这个地址的访问,我们输入 “ p ”,然后回车即可. Xcode The operation couldn't be completed. (NSURLErrorDomain error -1012.)

Error Domain=NSCocoaErrorDomain Code=3840 "The operation couldn’t be completed. (Cocoa error 3840.)"

AF解析json出错: Error Domain=NSCocoaErrorDomain Code=3840 "The operation couldn't be completed. (Cocoa error 3840.)" (JSON text did not start with array or object and option to allow fragments not set.) UserInfo=0x8a8a700 {NSDebugDescription=JSON te

关于coredata存储,出现The operation couldn’t be completed. (Cocoa error 133020.)的错误解决方案

self.context=[[NSManagedObjectContext alloc] initWithConcurrencyType:NSPrivateQueueConcurrencyType]; [self.context setPersistentStoreCoordinator:dm.PSC]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(mocDidSaveNotification

【解决方法】Error Domain=kCLErrorDomain Code=0 "The operation couldn’t be completed.

环境:XCODE6.0.1 + iPhone / iOS8 错误:使用CoreLocation获取地理位置信息,报错 Error Domain=kCLErrorDomain Code=0 "The operation couldn't be completed. (kCLErrorDomain error 0.)" 解决方法: 1.确定模拟器(手机)已经联网并且允许程序获取地理位置 2.重置地理位置服务或者网络服务 PS:如果是模拟器就果断直接重置模拟器吧  IOS Simulator

iOS模拟器URLWithString The operation couldn't be completed. (Cocoa error 256.)

我遇到这个问题是在iPad Air的模拟器上使用NSURL的URLWithString方法从Flickr获取数据时,解决的方法是换一个模拟器,我换成iPad 2.就没有问题了. iOS模拟器URLWithString The operation couldn't be completed. (Cocoa error 256.)

System.ServiceProcess.TimeoutException: Time out has expired and the operation has not been completed.

项目代码如下 ServiceController service = new ServiceController("ModbusAgent"); service.Stop(); TimeSpan timeout = new TimeSpan(50000); service.WaitForStatus(ServiceControllerStatus.Stopped, timeout); 按照Stackoverflow:Time out has expired and the operat

ORA-15221: ASM operation requires compatible.asm of 11.2.0.0.0 or higher

昨天在做存储迁移的时候,对ASM磁盘组的东西进行操作时,出现了如标题的错误.经查资料,发现原因如下: 如磁盘组是使用asmca图形化工具创建,则compatible.asm默认设置就已经为11.2,如使用CREATE DISKGROUP这个SQL命令创建,则默认设置为10.1,需要手动修改.因此,需要先手工进行设置版本,指令如下:    SQL> alter diskgroup oradg set attribute 'COMPATIBLE.ASM'='11.2'; ORA-15221: ASM