2

I am trying to save my data by NSUserDefaults and view it in table view. I have already set four texts data to an array (dataArray) so I can view it in the table view. but I couldn't load the data to the table view. So am I missing something?

Thanks in advance.

-(IBAction)save{

NSUserDefaults *add1 = [NSUserDefaults standardUserDefaults];
[add1 setObject:txt1 forKey:@"txt1"];
[add1 setObject:txt2 forKey:@"txt2"];
[add1 setObject:txt3 forKey:@"txt3"];
[add1 setObject:txt4 forKey:@"txt4"];

[add1 synchronize]; 
}

- (void)viewDidLoad
{
[super viewDidLoad];
NSUserDefaults *prefs = [NSUserDefaults standardUserDefaults];
self.dataArray = [NSArray arrayWithObjects:[prefs objectForKey:@"txt1"], [prefs objectForKey:@"txt2"], [prefs objectForKey:@"txt3"],[prefs objectForKey:@"txt4"] nil];
}


- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

// Set up the number of rows
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [dataArray count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSString *string = [dataArray objectAtIndex:indexPath.row];
    static NSString *CellIdentifier = @"Cell";

    UITableView *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
}
4

3 に答える 3

1

[yourUserDefaultObject synchronize];の状態を保存するには を呼び出すNSUserDefaults必要がありますが、実際には NSUserDefaults の 4 つのオブジェクトを作成する必要はありません。一度作成してsetObject:forKey:から同じインスタンスを呼び出してからsynchronize.
次にcell.textLabel.text=string;、コールバックでセルのラベルを設定するように設定しcellForRowAtIndexPathます。

于 2012-05-05T09:58:04.297 に答える
1

最初に nsuserdefaults を同期し、

テーブルビューセルを割り当て、テキストをテキストラベルに割り当てる必要があります

cellForRowAtindexpath メソッドに次のコードを追加します。

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSString *string = [dataArray objectAtIndex:indexPath.row];

    static NSString *CellIdentifier = @"Cell";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

  if(cell==nil)
{
 cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault  reuseIdentifier:CellIdentifier] autorelease];
}
  cell.textLabel.text=string;

  return cell;
}
于 2012-05-05T09:58:08.230 に答える
0

セルのどこかにテストを追加する必要があるため、次の行を追加します。tablviewcell. 可能であれば、配列全体を保存するよりも最初に配列を作成してください。そうNSUserDefaultsすることで時間を節約でき、コーディングを行うためのより良い方法です。

cell.textLabel.text=string;

編集>>>

 UILabel *label;
label = [[UILabel alloc]initWithFrame:CGRectMake(10, 10, 50, 40)];

label.text = string; 

// また

label.text = @"Hi I am here..";

label.backgroundColor = [UIColor greenColor];
label.textColor = [UIColor whiteColor];
[cell addSubview:label]; 
于 2012-05-05T09:59:51.860 に答える