0

ユーザーが3つのフィールドを持つイベントを作成するアプリケーションを開発しています:

カテゴリ、名前、イベント。 ユーザーがエントリを入力した後、後で参照できるようにデータを保存する保存ボタンがあります。その後、アプリを再度開くと、データがテーブル ビューに表示されます。

iOSでデータを「保存」するにはどうすればよいですか? 私は NSUserDefaults について知っていますが、これがこの例の方法ではないと確信しています。

私がこれまでに行ったこと:

Category 、 name 、 event で「Note」クラスを作成しました。

保存ボタンのコードは次のようになります。

- (IBAction)save:(id)sender {

    //creating a new "note" object
    Note *newNote = [[Note alloc]init];

    newNote.category = categoryField.text;
    newNote.name = nameField.text;
    newNote.event = eventField.text;

    // do whatever you do to fill the object with data

    NSData* data = [NSKeyedArchiver archivedDataWithRootObject:newNote];

    /*
     Now we create the path to the documents directory for your app
     */

    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
                                                         NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];

    /*
     Here we append a unique filename for this object, in this case, 'Note'
     */

    NSString* filePath = [documentsDirectory stringByAppendingString:@"Note"];

    /*
     Finally, let's write the data to our file
     */

    [data writeToFile:filePath atomically:YES];

    /*
     We're done!
     */
}

これはイベントを保存する正しい方法ですか? 書いたものを今すぐ取得するにはどうすればよいですか?

次に、このコードを再度実行すると、データを上書きするか、新しいエントリを作成しますか?

毎回新しいエントリを作成する方法を確認したいと思います。

また、提示しているテーブルからイベントを削除したいので、削除がどのように機能するかを確認したいと思います。

私の「メモ」オブジェクトは次のようになります。

@interface Note : NSObject <NSCoding> {
    NSString *category;
    NSString *name;
    NSString *event;
}

@property (nonatomic, copy) NSString *category;

@property (nonatomic, copy) NSString *name;

@property (nonatomic, copy) NSString *event;

@end
4

6 に答える 6

2

試す

//Note.h 

#define kNoteCategory  @"Category"
#define kNoteName      @"Name"
#define kNoteEvent     @"Event"

@interface Note : NSObject

@property (nonatomic, copy) NSString *category;
@property (nonatomic, copy) NSString *name;
@property (nonatomic, copy) NSString *event;

- (id)initWithDictionary:(NSDictionary *)dictionary;

+ (NSArray *)savedNotes;
- (void)save;

//Note.m ファイル

- (id)initWithDictionary:(NSDictionary *)dictionary
{
    self = [super init];
    if (self)
    {
        self.category = dictionary[kNoteCategory];
        self.name = dictionary[kNoteName];
        self.event = dictionary[kNoteEvent];
    }

    return self;
}

+ (NSString *)userNotesDocumentPath
{
    NSString *documentsPath  = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0] stringByAppendingPathComponent:@"UserNotes.plist"];

    return documentsPath;

}

+ (NSArray *)savedNotes
{
    NSString *documentsPath = [self userNotesDocumentPath];
    NSArray *savedNotes = [NSArray arrayWithContentsOfFile:documentsPath];
    NSMutableArray *savedUserNotes = [@[] mutableCopy];
    for (NSDictionary *dict in savedNotes) {
        Note *note = [[Note alloc]initWithDictionary:dict];
        [savedUserNotes addObject:note];
    }

    return savedUserNotes;

}

- (NSDictionary *)userNoteDictionary
{
    NSMutableDictionary *dict = [NSMutableDictionary dictionary];

    if (self.category) {
        dict[kNoteCategory] = self.category;
    }
    if (self.name) {
        dict[kNoteName] = self.name;
    }
    if (self.event) {
        dict[kNoteEvent] = self.event;
    }

    return dict;
}

- (void)saveUserNotesToPlist:(NSArray *)userNotes
{
    NSMutableArray *mutableUserNotes = [@[] mutableCopy];
    for (Note *note in userNotes) {
        NSDictionary *dict = [note userNoteDictionary];
        [mutableUserNotes addObject:dict];
    }
    NSString *documentsPath  = [Note userNotesDocumentPath];
    [mutableUserNotes writeToFile:documentsPath atomically:YES];
}

#pragma mark - Save

- (void)save
{
    NSMutableArray *savedNotes = [[Note savedNotes] mutableCopy];
    [savedNotes addObject:self];
    [self saveUserNotesToPlist:savedNotes];
}

メモを保存する

- (IBAction)save:(id)sender {

    //creating a new "note" object
    Note *newNote = [[Note alloc]init];

    newNote.category = categoryField.text;
    newNote.name = nameField.text;
    newNote.event = eventField.text;

    //Saves the note to plist
    [newNote save];

    //To get all saved notes
    NSArray *savedNotes = [Note savedNotes];
}

ソースコード

于 2013-05-10T11:28:43.013 に答える
0

Sqlite を使用してアプリケーションでデータをローカルに保存できること以外はすべて正しいです。

これは単なるファイルですが、すべての標準 SQL ステートメントを受け入れます。

これは、データをローカルに保存する 1 つの方法でもあります。

于 2013-05-10T11:16:07.090 に答える
0

NSUserDefaults 経由でデータを保存するには、GVUserDefaultsを使用しています

使用法

GVUserDefaults でカテゴリを作成し、.h ファイルにいくつかのプロパティを追加し、.m ファイルでそれらを @dynamic にします。

// .h
@interface GVUserDefaults (Properties)
@property (nonatomic, weak) NSString *userName;
@property (nonatomic, weak) NSNumber *userId;
@property (nonatomic) NSInteger integerValue;
@property (nonatomic) BOOL boolValue;
@property (nonatomic) float floatValue;
@end

// .m
@implementation GVUserDefaults (Properties)
@dynamic userName;
@dynamic userId;
@dynamic integerValue;
@dynamic boolValue;
@dynamic floatValue;
@end

を使用する代わりに、[[NSUserDefaults standardUserDefaults] objectForKey:@"userName"]単純に を使用できます[GVUserDefaults standardUserDefaults].userName

プロパティを設定することで、デフォルトを保存することもできます。

[GVUserDefaults standardUserDefaults].userName = @"myusername";
于 2013-05-10T11:17:51.360 に答える