プロジェクトに dbaccess を使用しています。私のプロジェクトでは、1 つの dbobject のコミットが機能していません。私のdbobjectは次のようなメッセージです:
#import <DBAccess/DBAccess.h>
@interface MessageObject : DBObject
@property (strong) NSString *to;
@property (strong) NSString *from;
@property (strong) NSString *message;
@property (strong) NSString *_id;
@property int messageType;
@property long long messageSentTime;
@end
#import "MessageObject.h"
@implementation MessageObject
@dynamic to, from, message, _id;
@dynamic messageType;
@dynamic messageSentTime;
@end
このオブジェクトをコミットすると、コミットが機能しません。他のすべてのオブジェクトのコミットは機能しています。誰でも私を助けることができますか?前もって感謝します。