私はアプリをデバッグする場合、私は新しいプロパティを追加するために必要です(@propertyのNSString *笑;)、それは次の例外を示しています。「RLMException」、理由:「移行が原因次のエラー
Terminating app due to uncaught exception 'RLMException', reason: 'Migration is required due to the following errors:
- Property 'haha' has been added to latest object model.'
を
しかし、私はignoredPropertiesを追加するときに、それがうまく機能:
+ (NSArray *)ignoredProperties {
return @[@"thead"];
}
なぜ?どうも。
http://stackoverflow.com/questions/34242901/migrating-but-still-getting-crash-on-rlmexception-reason-migration-is- requ?rq = 1 –
コアデータを使用していますか? –
@balkaransingh Yep – AnswerZhao