Questions tagged «xcode4»

Xcode 4,于2011年6月发布,是Apple针对Mac OS X和iOS的集成开发环境(IDE)。此标记仅应用于有关此特定版本Xcode的问题,而不能用于一般的Mac或iOS编程主题。对于Mac编程问题,请使用[cocoa];对于iOS(以前称为iPhone OS)编程问题,请使用[cocoa-touch]。




25
在NSOrderedSet生成的访问器中引发异常
在我的Lion应用程序上,我具有以下数据模型: subitems内部的关系Item 是有序的。 Xcode的4.1(编译4B110)为我创建的文件Item.h,Item.m,SubItem.h和SubItem.h。 以下是内容(自动生成)Item.h: #import <Foundation/Foundation.h> #import <CoreData/CoreData.h> @class SubItem; @interface Item : NSManagedObject { @private } @property (nonatomic, retain) NSString * name; @property (nonatomic, retain) NSOrderedSet *subitems; @end @interface Item (CoreDataGeneratedAccessors) - (void)insertObject:(SubItem *)value inSubitemsAtIndex:(NSUInteger)idx; - (void)removeObjectFromSubitemsAtIndex:(NSUInteger)idx; - (void)insertSubitems:(NSArray *)value atIndexes:(NSIndexSet *)indexes; - (void)removeSubitemsAtIndexes:(NSIndexSet *)indexes; - (void)replaceObjectInSubitemsAtIndex:(NSUInteger)idx withObject:(SubItem …
364 cocoa  core-data  xcode4 

11
在Xcode 4中重命名项目
我一定缺少明显的东西,但是我不知道如何在Xcode 4中重命名我的项目。 如果我没记错的话,Xcode 3有专门的菜单项,但是Xcode 4中没有这样的条目。
334 xcode4 

12
不能忽略UserInterfaceState.xcuserstate
我将Git用于Xcode 4项目版本控制。我已明确添加ProjectFolder.xcodeproj/project.xcworkspace/xcuserdata/myUserName.xcuserdatad/UserInterfaceState.xcuserstate到.gitignore,但Git不会忽略它。任何想法为什么会这样?
301 xcode  git  xcode4  gitignore 

13
Xcode:未能获得处理任务
我已在发布模式下运行带有Xcode 4的iPhone上的应用程序。 一切正常,直到我切换到模拟器,然后又切换回iPhone。切换回去后,该应用程序在iPhone上启动,但是在Xcode之后立即显示主屏幕: failed to get the task for process 我试图删除/添加权利文件,删除应用程序并重新启动Xcode,但无济于事。
255 ios  xcode4 

30
设备编译时的Apple Mach-O Linker错误
我刚刚升级到xcode 4.0,无法再部署到iPhone,但遇到Apple Mach-O Linker Error,但它仍然适用于模拟器。 Ld /Users/yveswheeler/Library/Developer/Xcode/DerivedData/iParcel-fkeqjcjcbbhjwhdssjptkdxzzzxh/Build/Intermediates/iParcel.build/Debug-iphoneos/iParcel.build/Objects-normal/armv7/iParcel normal armv7 cd /Users/yveswheeler/iParcel setenv IPHONEOS_DEPLOYMENT_TARGET 3.2 setenv PATH "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin" /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/g++-4.2 -arch armv7 -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.3.sdk -L/Users/yveswheeler/Library/Developer/Xcode/DerivedData/iParcel-fkeqjcjcbbhjwhdssjptkdxzzzxh/Build/Products/Debug-iphoneos -F/Users/yveswheeler/Library/Developer/Xcode/DerivedData/iParcel-fkeqjcjcbbhjwhdssjptkdxzzzxh/Build/Products/Debug-iphoneos -filelist /Users/yveswheeler/Library/Developer/Xcode/DerivedData/iParcel-fkeqjcjcbbhjwhdssjptkdxzzzxh/Build/Intermediates/iParcel.build/Debug-iphoneos/iParcel.build/Objects-normal/armv7/iParcel.LinkFileList -dead_strip -all_load -ObjC -lxml2 -miphoneos-version-min=3.2 -framework UIKit -framework CoreGraphics -framework QuartzCore /Users/yveswheeler/Library/Developer/Xcode/DerivedData/iParcel-fkeqjcjcbbhjwhdssjptkdxzzzxh/Build/Products/Debug-iphoneos/libThree20.a /Users/yveswheeler/Library/Developer/Xcode/DerivedData/iParcel-fkeqjcjcbbhjwhdssjptkdxzzzxh/Build/Products/Debug-iphoneos/libThree20Core.a /Users/yveswheeler/Library/Developer/Xcode/DerivedData/iParcel-fkeqjcjcbbhjwhdssjptkdxzzzxh/Build/Products/Debug-iphoneos/libThree20Network.a /Users/yveswheeler/Library/Developer/Xcode/DerivedData/iParcel-fkeqjcjcbbhjwhdssjptkdxzzzxh/Build/Products/Debug-iphoneos/libThree20Style.a /Users/yveswheeler/Library/Developer/Xcode/DerivedData/iParcel-fkeqjcjcbbhjwhdssjptkdxzzzxh/Build/Products/Debug-iphoneos/libThree20UI.a /Users/yveswheeler/Library/Developer/Xcode/DerivedData/iParcel-fkeqjcjcbbhjwhdssjptkdxzzzxh/Build/Products/Debug-iphoneos/libThree20UICommon.a /Users/yveswheeler/Library/Developer/Xcode/DerivedData/iParcel-fkeqjcjcbbhjwhdssjptkdxzzzxh/Build/Products/Debug-iphoneos/libThree20UINavigator.a -framework AddressBook -lz.1.2.3 -framework Foundation -framework …


19
Xcode iOS项目仅显示“ My Mac 64-bit”,但不显示模拟器或设备
这刚刚开始发生,我的iOS项目仅显示“我的Mac 64位”,而不显示要构建的模拟器或iPhone。我不知道为什么会这样。我认为我没有改变任何事情。 我将我的项目设置为iOS 5作为基本SDK,但是无论我做什么,它似乎都不会显示要构建的其他任何选项。我已经重新启动了Xcode几次,仍然没有运气。 为什么会这样呢? Xcode 4.2,内部版本4D199
226 ios  xcode  xcode4 

25
Xcode 4在目标设备上说“完成运行<我的应用程序>” —什么也没发生
该应用程序既无法安装也无法在我的设备上运行。所有供应配置文件都是最新的。我已经尝试删除并重新安装它们。 状态栏显示Xcode正在构建我的项目,然后说正在运行我的项目,然后说“完成运行”。在整个过程中,iPod屏幕保持黑色。在管理器中检测到iPod,但我没有发现它的配置有任何问题。几天前,使用Xcode 3一切都运行良好。 它在模拟器上不起作用,但是可能需要注意,在模拟器中,它似乎卡在了“附加到”上,并且模拟器拒绝启动。
223 iphone  ios  xcode  xcode4  ipod-touch 

11
Xcode 4-构建输出目录
我在Xcode4(测试版5)中设置/定位输出文件时遇到问题。它们被放置在中的某个位置~/Library/Developer/ugly_path/...。我什至无法在我的产品上选择“在查找器中显示”。对于简单的C项目,Foundation工具甚至Cocoa包来说都是一样的。调试正常。 您能否指出我在哪里以及如何建立/建立输出目录?(我知道这听起来很傻,我已经在Xcode3中编码了几个月了,但是我在Xcode4 beta中无法弄清楚)。 非常感谢。
217 ide  xcode4 

30
Xcode 4挂在“附加到(应用程序名称)”上
我刚刚升级到Xcode 4,由于某种原因,我的应用程序无法在模拟器或iOS设备上运行。它在Xcode 3中运行正常,但是当我按Run时,程序突然停止在“附加到...”。似乎也没有其他信息可以帮助解决此问题。 作为总结,您可以尝试以下方法来解决该问题: 重新启动模拟器。 确保您没有在Building Phases-&gt; Copy Bundle Resources中包含Info.plist文件。 资源文件夹作为文件夹引用添加到项目中(蓝色文件夹图标)。造成麻烦的是,将文件夹作为一个组添加后,问题消失了。



By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.