ios – 如何通过CoreData模型创建一个新的实体(表)?

前端之家收集整理的这篇文章主要介绍了ios – 如何通过CoreData模型创建一个新的实体(表)?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在sqlite中创建一个新的实体(表).我的代码如下:
  1. +(BOOL)CreateDataSet:(NSManagedObjectModel *) model
  2. attributes:(NSDictionary*)attributes
  3. entityName:(NSString*) entityName
  4. {
  5. NSEntityDescription *entityDef = [[NSEntityDescription alloc] init];
  6.  
  7. [entityDef setName:entityName];
  8. [entityDef setManagedObjectClassName:entityName];
  9. [model setEntities:[NSArray arrayWithObject:entityDef]];
  10. NSArray *properties = [CoreDataHelper CreateAttributes:attributes];
  11. [entityDef setProperties:properties];
  12.  
  13. [entityDef release];
  14.  
  15. return TRUE;
  16. }

但它会引发错误

  1. Terminating app due to uncaught exception 'NSInternalInconsistencyException',reason: 'Can't modify an immutable model.'
  2. *** Call stack at first throw:
  3. (
  4. 0 CoreFoundation 0x01c5abe9 __exceptionPreprocess + 185
  5. 1 libobjc.A.dylib 0x01daf5c2 objc_exception_throw + 47
  6. 2 CoreData 0x0152634a -[NSManagedObjectModel(_NSInternalMethods) _throwIfNotEditable] + 106
  7. 3 CoreData 0x01526904 -[NSManagedObjectModel setEntities:] + 36
  8. ....

这似乎表明该模型是只读的.

解决方法

From the documentation:(重点是我的)

Managed object models are editable
until they are used by an object graph
manager (a managed object context or a
persistent store coordinator). This
allows you to create or modify them
dynamically. However,once a model is
being used,it must not be changed.
This is enforced at runtime—when the
object manager first fetches data
using a model,the whole of that model
becomes uneditable. Any attempt to
mutate a model or any of its
sub-objects after that point causes an
exception to be thrown. If you need to modify a model that is in use,create a copy,modify the copy, and then discard the objects with the old model.

猜你在找的iOS相关文章