保存数据后,UITableView没有重新加载

时间:2012-12-31 08:16:35

标签: iphone objective-c uitableview ios6

以下是我在屏幕上的内容(我试图展示我在屏幕上看到的内容)

++++++++++++++++++++++++++++++++++
+                                +
+  TextField-Name                +
+                                +
+  Save Button                   +
+                                +
+  UITableView                   +
+  .                             +
+  .                             +
+  .                             +
+                                +
++++++++++++++++++++++++++++++++++

当我点击保存按钮时,数据会被存储,我在下面的表格视图中显示相同的内容。问题是当点击保存时,数据会被保存,但是它没有显示在UITableView中。我相信[self.myTableView reloadData];会做到这一点,但事实并非如此。

以下是我的代码。

.h文件

#import <UIKit/UIKit.h>

@interface DeviceDetailViewController : UIViewController<UITableViewDelegate, UITableViewDataSource>

@property (weak, nonatomic) IBOutlet UITextField *nameTextField;
@property (strong, nonatomic) IBOutlet UITableView *myTableView;

- (IBAction)save:(id)sender;

@end

.m文件

@interface DeviceDetailViewController ()
@end

@implementation DeviceDetailViewController
@synthesize myTableView;

- (IBAction)save:(id)sender {
    // code for saving data
    NSLog(@"saved data and now reload data.... started....");
    [self.myTableView reloadData];
    // I thought this statement will do magic... but its not....
    NSLog(@"saved data and now reload data.... finised....");
}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Return the number of sections.
    return 1;
}

- (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows in the section.
    NSLog(@"numberOfRowsInSection %d", self.devices.count);
    return self.devices.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Cel3";
    UITableViewCell *cell = [myTableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    // Configure the cell...
    NSManagedObject *device = [self.devices objectAtIndex:indexPath.row];
    NSLog(@"cellForRowAtIndexPath %@ %@ by %@", [device valueForKey:@"name"], [device valueForKey:@"version"], [device valueForKey:@"company"]);
    [cell.textLabel setText:[NSString stringWithFormat:@"%@ %@", [device valueForKey:@"name"], [device valueForKey:@"version"]]];
    [cell.detailTextLabel setText:[device valueForKey:@"company"]];

    return cell;
}

当我运行app时,下面是NSLOG

中的内容
2012-12-31 11:52:34.222 MyStore[720:11603] numberOfRowsInSection 0
2012-12-31 11:52:34.627 MyStore[720:11603] numberOfRowsInSection 2
2012-12-31 11:52:34.628 MyStore[720:11603] cellForRowAtIndexPath iPhone 4s by Apple
2012-12-31 11:52:34.629 MyStore[720:11603] cellForRowAtIndexPath X10 Mini Pro by Sony

当我添加内容时,我会

2012-12-31 11:53:21.868 MyStore[720:11603] saved data and now reload data.... started....
2012-12-31 11:53:21.869 MyStore[720:11603] numberOfRowsInSection 2
2012-12-31 11:53:21.870 MyStore[720:11603] saved data and now reload data.... finised....
2012-12-31 11:53:21.871 MyStore[720:11603] cellForRowAtIndexPath iPhone 4s by Apple
2012-12-31 11:53:21.872 MyStore[720:11603] cellForRowAtIndexPath X10 Mini Pro by Sony

这意味着所有方法都被调用,但我仍然无法获取数据。

有人可以指出我需要写的附加代码吗?

2 个答案:

答案 0 :(得分:1)

由于您的table dataSource数组是self.devices数组。

self.devices

时,原因可能是doesnot数组updated获得saving data

首先update self.devices然后reload table

答案 1 :(得分:0)

我认为您的 cellForRowAtIndexPath 方法存在问题,请尝试使用以下代码行

**

static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
            cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}

**

而不是

static NSString *CellIdentifier = @"Cel3";
    UITableViewCell *cell = [myTableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];