これは、私が自分で教えるために本から半分コピーしている簡単なプロジェクトです。これは、タスクをリストに追加するためのテーブルビュー、テキストフィールド、およびボタン付きのリストです。次に、(ヘルパー関数を使用して)タスクの配列をディレクトリに保存し、アプリケーションを閉じて再度開くと情報を取得します。そのことはコンピュータ上で実行され、私はアプリを終了してそこのどこの配列の要素も見つけないようにするために、それを再び開くまでデバイス上で動作すると思った。コンピュータ上で動作するので、私は何が正しくないか分かりません。私が理解しているこのコードのいくつかは、ちょうど今のところ(ヘルパー関数のように)コピーされたものです。 Pデバイスの情報の保存と取得
コード:
Hファイル
#import <UIKit/UIKit.h>
NSString *docPath();
@interface ViewController : UIViewController<UITableViewDataSource>
{
UITableView *taskTable;
UITextField *taskField;
UIButton *insertButton;
NSMutableArray *tasks;
}
- (void)addTask:(id)sender;
- (void)writeTasksToFile:(NSString *)path;
@end
メートルファイル
#import "ViewController.h"
NSString *docPath()
{
NSArray *pathList = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
return [[pathList objectAtIndex:0] stringByAppendingString:@"data.td"];
}
@interface ViewController()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
NSArray *plist = [NSArray arrayWithContentsOfFile:docPath()];
if(plist) {
tasks = [plist mutableCopy];
} else {
tasks = [[NSMutableArray alloc] init];
}
CGRect buttonFrame = CGRectMake(228,40,72,31);
insertButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[insertButton setFrame:buttonFrame];
insertButton.backgroundColor = [UIColor redColor];
[insertButton addTarget:self action:@selector(addTask:) forControlEvents:UIControlEventTouchUpInside];
[insertButton setTitle:@"Insert" forState:UIControlStateNormal];
[[self view] addSubview:insertButton];
CGRect tableFrame = CGRectMake(0, 80, 320, 380);
taskTable = [[UITableView alloc] initWithFrame:tableFrame style:UITableViewStylePlain];
[taskTable setSeparatorStyle:UITableViewCellSeparatorStyleNone];
taskTable.separatorStyle = UITableViewCellSeparatorStyleSingleLine;
[self.view addSubview:taskTable];
[taskTable setDataSource:self];
CGRect fieldFrame = CGRectMake(20, 40, 200, 31);
taskField = [[UITextField alloc]initWithFrame:fieldFrame];
[taskField setBorderStyle:UITextBorderStyleRoundedRect];
[taskField setPlaceholder:@"type a task, enter"];
[taskField setBackgroundColor:[UIColor greenColor]];
[self.view addSubview:taskField];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(applicationDidEnterBackground:) name:UIApplicationDidEnterBackgroundNotification object:nil];
}
- (void) applicationDidEnterBackground:(UIApplication *)application {
[tasks writeToFile:docPath() atomically:YES];
}
- (void)addTask:(id)sender{
NSString *t = [taskField text];
if ([t isEqualToString:@""]) {return;}
[tasks addObject:t];
[taskTable reloadData];
[taskField setText:@""];
[taskField resignFirstResponder];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
return [tasks count];
}
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath
{
if (editingStyle == UITableViewCellEditingStyleDelete)
{
[tasks removeObjectAtIndex:indexPath.row];
[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
}
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UITableViewCell *c = [taskTable dequeueReusableCellWithIdentifier:@"Cell"];
if (!c){
c = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
}
NSString *item = [tasks objectAtIndex:[indexPath row]];
[[c textLabel] setText:item];
return c;
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (void)writeTasksToFile:(NSString *)path
{
[tasks writeToFile:path atomically:YES];
}
@end
編集-------------------- -------------------------------------------------- -------------------------------------------------- ------
ここには、デバッガのスクリーンショットがあります。ブレークポイントはplistがあるかどうかを調べるライン。変更する必要があり、私が見
あなたは何が起こっているか確認するためにすべてのブレークポイントを置いたことがありますか?おそらく 'if(plist)'でファイルを正しくロードしたかどうかを確認するのでしょうか?また、これをMacやiPhoneで実行しているとお考えですか? – fsb
こんにちは、お返事ありがとうございます!私はMac上でそれを実行していると私は(シフトコマンドを2回使用してスワイプ)と再びそれを開いて、アプリケーションを閉じると、情報はまだそこにあります。 iPhone上には情報がありません。ブレークポイントについては、私はif(plist)を載せました。私はかなり新しいですから、私は自信を持ってデバッグするのではないですが、それに付随するものをスクリーンショットで編集します。 – Paul
私はあなたが示唆したように 'if(plist)'をチェックし、次の行と次の行に3つのブレークストップを入れています。私がそれをMac上で実行すると、plistには最初のブレークには4つの要素とタスクがなく、次に2つ目の要素には両方とも4つの要素があります(変更可能なコピーが行われたためです)。デバイス上で、行うことを追加して再起動すると、plistには要素がありません。 – Paul