iOS 删除、重新排序xcdatamodel

找到Xcode项目文件.xcodeproj,查看包内容。

里面有project.pbxproj,用文本编辑器打开。

找到类似如下内容段:

/* Begin XCVersionGroup section */
        6A8CFCCE1D52D4FA00169639 /* CoreDataDemoByFicow.xcdatamodeld */ = {
            isa = XCVersionGroup;
            children = (
                6A9B67701DA88B5E004FB82D /* CoreDataDemoByFicow 2.xcdatamodel */,
                6A8CFCCF1D52D4FA00169639 /* CoreDataDemoByFicow.xcdatamodel */,
            );
            currentVersion = 6A8CFCCF1D52D4FA00169639 /* CoreDataDemoByFicow.xcdatamodel */;
            path = CoreDataDemoByFicow.xcdatamodeld;
            sourceTree = "<group>";
            versionGroupType = wrapper.xcdatamodel;
        };
/* End XCVersionGroup section */
CoreDataDemoByFicow.xcdatamodelCoreDataDemoByFicow 2.xcdatamodel

要删除还是要排序,现在随便你咯!
请注意备份!

转载请注明出处 http://www.cnblogs.com/ficow/p/5938825.html

时间: 2024-11-15 08:10:03

iOS 删除、重新排序xcdatamodel的相关文章

ios 删除系统从相册压缩的视频

iOS的沙盒机制,应用只能访问自己应用目录下的文件.iOS不像android,没有SD卡概念,不能直接访问图像.视频等内容.iOS应用产生的内容,如图像.文件.缓存内容等都必须存储在自己的沙盒内.默认情况下,每个沙盒含有3个文件夹:Documents, Library 和 tmp.Library包含Caches.Preferences目录.               上面的完整路径为:用户->资源库->Application Support->iPhone Simulator->

iOS 删除相册中照片--来自简书

来自:http://www.jianshu.com/p/ac18aa3f28c2 最近公司的app有一个新功能是在app中删除相册的照片 ,本来是一个比较简单地功能,在做的过程中却发现AssetsLibary 框架并没有提供删除相册的API,网络上查找的时候这方面的信息也很少,最终在stackoverflow上发现了一个巧妙的方法,使用[ALAsset setImageData:metadata:completionBlock:]来实现删除照片的功能,可是也有人说这个API虽然能删除照片,但是它

iOS 删除NSString中特定字符

+(NSString *) stringDeleteString:(NSString *)str { NSMutableString *str1 = [NSMutableString stringWithString:str]; for (int i = 0; i < str1.length; i++) { unichar c = [str1 characterAtIndex:i]; NSRange range = NSMakeRange(i, 1); if (|| c == '"' ||

iOS删除AutoLayout

有时候,我们需要动态改变View中AutoLayout里的某个值,比如移动x值,或者y值,改怎么办呢? 下面封装了比较好的方法来删除:摘自 https://github.com/MakeZL/ZLAutoLayout (封装AutoLayout的框架) 以下用到 ZLLayoutConstraint 是别名 NSLayoutConstraint typedef NSLayoutConstraint ZLLayoutConstraint; --------------- 删除所有约束 <span

IOS 删除git中的submodules 以sourceTree为例

1.首先删除submodule的条目  选中要删除的子目录 右键删除,删除之后, 该子模块消失. 然后查看 .gitmodules 发现删除了里面的 [submodule "IphoneApp/submodules/ProjectName"] path = IphoneApp/submodules/ProjectName url = [email protected]:dizhi/ProjectName.git 同时 项目中的  例如 IphoneApp/submodules/Proj

iOS 删除Xcode自带的Storyboard和ViewController

从Xcode6开始,不再有新的空工程的选项,很多时候想建立一个新的空工程,这个时候你可以不理会系统创建的viewcontroller,然后把自己的视图控制器作为根视图,这样没有什么关系,但是若是嫌其不整洁,可以将其删除掉,然后把自己的视图控制器设为根视图,具体的步奏如下: ?????? 1:直接删除Storyboard 和ViewController,不是删索引,是直接移除: ?????? 2:info中的plist文件删除Main storyboard file base name 选项: ?

iOS: 删除真机测试的Provisioning Profile后,在Code Singing中出现entitlements.plist文件无效,解决办法如下:

问题主题:method to The entitlements specified in your application’s Code Signing Entitlements file do not mat 问题描述:Error:The entitlements specified in your application’s Code Signing Entitlements file do not match those specified in your provisioning pro

IOS 删除数组中重复的元素

NSArray *array = [[NSArray alloc] initWithObjects:@"12",@"2",@"3",@"2",@"1",@"5", nil]; NSSet *uniqueElements = [ NSSet setWithArray :array ]; for (id element in uniqueElements ) { NSLog(@"%

mac 下 配置appium +ios真机环境

mac系统:10.11.6 xcode:7 appium:1.5.3 iphone: 6 p 1.搭建 appium 安卓的环境: 1.jdk 2.sdk 3.appium 4.配置环境变量 mac下的环境变量是在 登录用户的 根目录下 cd ~/ 下的 .bash_profile中 没有自己 创建一个 8 # Setting PATH for Python 3.5 9 # The original version is saved in .bash_profile.pysave 10 PATH