Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/iphone/38.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Iphone 两个独立控制器中的两个独立UITableView,加载相同的数据_Iphone_Uitableview_Sdk_Nsmutablearray_Plist - Fatal编程技术网

Iphone 两个独立控制器中的两个独立UITableView,加载相同的数据

Iphone 两个独立控制器中的两个独立UITableView,加载相同的数据,iphone,uitableview,sdk,nsmutablearray,plist,Iphone,Uitableview,Sdk,Nsmutablearray,Plist,first.h Second.h 数据似乎正在将相同的数据加载到每个表中。如何修复此问题。您正在两个视图中加载“applicationData.plist” 您正在将相同的数据加载到两个控制器中的阵列中,这就是发生此情况的原因。在第一个控制器中,您正在填充阵列人员数据,其中包含与第二个控制器中的阵列(设备数据)相同的数据,因此,在不同的控制器中在两个tableview中显示相同的数据,只要在数组中加载适当的值,您就会得到输出。如果我更改applicationData.plist的名称,应用程序就

first.h

Second.h


数据似乎正在将相同的数据加载到每个表中。如何修复此问题。

您正在两个视图中加载“applicationData.plist”

您正在将相同的数据加载到两个控制器中的阵列中,这就是发生此情况的原因。在第一个控制器中,您正在填充阵列人员数据,其中包含与第二个控制器中的阵列(设备数据)相同的数据,因此,在不同的控制器中在两个tableview中显示相同的数据,只要在数组中加载适当的值,您就会得到输出。如果我更改applicationData.plist的名称,应用程序就会崩溃。我已将名称更改为applicationDataOne.plist和applicationDataTwo.plist。似乎有效,直到我关闭应用程序,我的数据不再存在。就像它不再向plist文件显示数据一样。我修复了它,我没有使用saveData。我注意到方法saveData未找到,因此它返回一个类型id。是否需要在void语句(saveData)的头文件中添加一些内容?
@interface PersonnelViewController : UIViewController 
    <UITableViewDelegate, UITableViewDataSource>
{

    NSMutableArray *personnelData;
    IBOutlet UITextField *tableCellText;
    IBOutlet UITableView *personTableView;
    IBOutlet UINavigationItem *navItem;

} 

@property (nonatomic, retain) NSMutableArray *personnelData;

-(IBAction)addRowToTableView;
-(IBAction)editTable;
-(NSString *)personDataFilePath;
-(IBAction)endText;



-(IBAction)done;
@implementation PersonnelViewController

@synthesize personnelData;

-(IBAction)done{    
    [self dismissModalViewControllerAnimated:YES];

}

- (void)viewDidLoad {

    NSArray *archivedArray = [NSKeyedUnarchiver unarchiveObjectWithFile:[self personDataFilePath]];
        if (archivedArray == nil) {

        personnelData = [[NSMutableArray alloc] init];                

    } else {
        personnelData = [[NSMutableArray alloc] initWithArray:archivedArray];
        }

}


- (IBAction)addRowToTableView {
    [personnelData addObject:tableCellText.text];



    [self personDataFilePath];
    [personTableView reloadData];       

}


- (IBAction)editTable {

    UIBarButtonItem *leftItem;

    [personTableView setEditing:!personTableView.editing animated:YES];

    if (personTableView.editing) {

    leftItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(editTable)];

    } else {

    leftItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemEdit target:self action:@selector(editTable)];


}

    navItem.rightBarButtonItem = leftItem;
    [self personDataFilePath];
    [personTableView reloadData];
}


- (IBAction)endText {

}

- (NSInteger)numberOfSectionInTableView:(UITableView *)tableView {

    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

    return [personnelData count];

}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
    if (cell == nil) {

    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"] autorelease];


}

    cell.textLabel.text = [personnelData objectAtIndex:indexPath.row];

    return cell;

}

- (NSString *)personDataFilePath {

        NSString *personDataFilePath;
        NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
        NSString *documentDirectory = [paths objectAtIndex:0];
        personDataFilePath = [[documentDirectory stringByAppendingPathComponent:@"applicationData.plist"] retain];
        return personDataFilePath;

}


- (void)saveData1 {

        [NSKeyedArchiver archiveRootObject:[personnelData copy]  toFile:[self personDataFilePath]];

}

-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {

        [personnelData removeObjectAtIndex:indexPath.row];
        [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationTop];

}


- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {

        return YES;
}

    - (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath
toIndexPath:(NSIndexPath *)toIndexPath {
    NSString *item = [[personnelData objectAtIndex:fromIndexPath.row] retain];
    [personnelData removeObject:item];
    [personnelData insertObject:item atIndex:toIndexPath.row];
    [item release];
}

    - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
    {


    }

    - (void)dealloc {
    [super dealloc];
}

@end
@interface ApparatusViewController : UIViewController 
<UITableViewDelegate, UITableViewDataSource> {

NSMutableArray *apparatusData;
IBOutlet UITextField *tableCellText;
IBOutlet UITableView *mainTableView;
IBOutlet UINavigationItem *navItem;

} 

@property (nonatomic, retain) NSMutableArray *apparatusData;

-(IBAction)addRowToTableView;
-(IBAction)editTable;
-(NSString *)apparatusDataFilePath;
-(IBAction)endText;



-(IBAction)done;
@end
@implementation ApparatusViewController

@synthesize apparatusData;

-(IBAction)done{    
    [self dismissModalViewControllerAnimated:YES];

}

- (void)viewDidLoad {

    NSArray *arichvedArray = [NSKeyedUnarchiver unarchiveObjectWithFile:[self apparatusDataFilePath]];
    if (arichvedArray == nil) {

        apparatusData = [[NSMutableArray alloc] init];                

    } else {
        apparatusData = [[NSMutableArray alloc] initWithArray:arichvedArray];
    }

}


- (IBAction)addRowToTableView {
    [apparatusData addObject:tableCellText.text];



    [self apparatusDataFilePath];
    [mainTableView reloadData]; 


}


- (IBAction)editTable {

    UIBarButtonItem *leftItem;

    [mainTableView setEditing:!mainTableView.editing animated:YES];

    if (mainTableView.editing) {

        leftItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemDone target:self action:@selector(editTable)];

    } else {

        leftItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemEdit target:self action:@selector(editTable)];


    }

    navItem.rightBarButtonItem = leftItem;
    [self apparatusDataFilePath];
    [mainTableView reloadData];
}


- (IBAction)endText {

}

- (NSInteger)numberOfSectionInTableView:(UITableView *)tableView {

    return 1;

}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

    return [apparatusData count];

}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];
    if (cell == nil) {

        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"] autorelease];


    }

    cell.textLabel.text = [apparatusData objectAtIndex:indexPath.row];

    return cell;

}

- (NSString *)apparatusDataFilePath {

    NSString *apparatusDataFilePath;
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentDirectory = [paths objectAtIndex:0];
    apparatusDataFilePath = [[documentDirectory stringByAppendingPathComponent:@"applicationData.plist"] retain];
    return apparatusDataFilePath;

}

- (void)saveData {

    [NSKeyedArchiver archiveRootObject:[apparatusData copy]  toFile:[self apparatusDataFilePath]];

}

-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {

    [apparatusData removeObjectAtIndex:indexPath.row];
    [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];


}


- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {

    return YES;
}

- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath
toIndexPath:(NSIndexPath *)toIndexPath {
    NSString *item = [[apparatusData objectAtIndex:fromIndexPath.row] retain];
    [apparatusData removeObject:item];
    [apparatusData insertObject:item atIndex:toIndexPath.row];
    [item release];
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{


}

- (void)dealloc {
    [super dealloc];
}



@end