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 语句。

这也是在本地保存数据的一种方法。

于 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 回答
0

您可以使用 NSKeyedUnArchiver 来检索数据。如果您尝试在相同的文件路径中写入,它将覆盖

于 2013-05-10T11:06:16.797 回答
0

看,我给你的一般想法,你可以根据你的要求使用这个代码。

1)获取yourPlist.plist文件的“路径”:

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); 
NSString *documentsDirectory = [paths objectAtIndex:0]; 
NSString *path = [documentsDirectory stringByAppendingPathComponent:@"yourPlist.plist"]; 

2)将数据插入 yourPlist :

NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];
[dict setValue:categoryField.text forKey:@"Category"];
[dict setValue:nameField.text forKey:@"Name"];
[dict setValue:eventField.text forKey:@"Event"];

NSMutableArray *arr = [[NSMutableArray alloc] init];
[arr addObject:dict];

[arr writeToFile: path atomically:YES];

3) 从 yourPlist 检索数据:

NSMutableArray *savedStock = [[NSMutableArray alloc] initWithContentsOfFile: path];
for (NSDictionary *dict in savedStock) {
     NSLog(@"my Note : %@",dict);
}
于 2013-05-10T11:06:26.640 回答
0

您可以使用核心数据来保存所有数据并在需要时将其删除。上面的代码总是创建 Note 类的新对象,所以每次你有新数据时,但当你尝试用相同的名称“Note”编写时。它总是覆盖旧数据。

于 2013-05-10T11:08:51.483 回答