0

我正在构建一个登录应用程序。它有两个表视图。一个列出之前访问过的人(existingNames),一个列出当前登录的人(姓名)。

在我的代码中的某些点,唯一不会在访问时使程序崩溃的可变数组是名称。

names 和 existingNames 似乎也以某种方式被颠倒了。当我尝试从名称中删除时,程序崩溃。当我从现有名称中删除时,更改会反映在 tableView2 中,但 tableView2 应该与名称相关联。

在应用程序的当前状态下,除了访问任何公司数组之外,一切都在“工作”。由于名称和现有名称被向后使用,我在工作中加上引号。

任何洞察可能导致问题的原因将不胜感激!

。H:

#import <UIKit/UIKit.h>

@interface ViewController : UIViewController <UITableViewDataSource, UITableViewDelegate>{
    UITableView *tableView;
}

@property (weak, nonatomic) IBOutlet UITextField *nameField;
@property (weak, nonatomic) IBOutlet UITextField *companyField;
@property (nonatomic, retain) NSMutableArray *names;
@property (nonatomic, retain) NSMutableArray *companies;
@property (nonatomic, retain) NSMutableArray *existingNames;
@property (nonatomic, retain) NSMutableArray *existingCompanies;

- (IBAction)add:(id)sender;
- (IBAction)addExisting:(id)sender;
- (IBAction)remove:(id)sender;
- (IBAction)submit:(id)sender;

@property (strong, nonatomic) IBOutlet UITableView *tableView1;
@property (weak, nonatomic) IBOutlet UITableView *tableView2;

@end

米:

#import "ViewController.h"
#import <MessageUI/MessageUI.h>

@interface ViewController () <MFMailComposeViewControllerDelegate>

@end

@implementation ViewController

@synthesize nameField;
@synthesize companyField;
@synthesize names;
@synthesize companies;
@synthesize existingNames;
@synthesize existingCompanies;
@synthesize tableView1 = _tableView1;
@synthesize tableView2 = _tableView2;

int rowNumber1;
int rowNumber2;

- (void)viewDidLoad
{
    [super viewDidLoad];
    self.names = [[NSMutableArray alloc] init];
    self.companies = [[NSMutableArray alloc] init];
    self.existingNames = [[NSMutableArray alloc] init];
    self.existingCompanies = [[NSMutableArray alloc] init];
    // Do any additional setup after loading the view, typically from a nib.
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    if (tableView == self.tableView1){
        return [existingNames count];
    }
    else if (tableView == self.tableView2){
        return [names count];
    }
    return 0;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *simpleTableIdentifier = @"SimpleTableItem";
    UITableViewCell *cell;

    if (tableView == self.tableView1){
        cell = [_tableView1 dequeueReusableCellWithIdentifier:simpleTableIdentifier];
    }
    else if (tableView == self.tableView2){
        cell = [_tableView2 dequeueReusableCellWithIdentifier:simpleTableIdentifier];
    }

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
    }

    if (tableView == self.tableView1){
        cell.textLabel.text = [existingNames objectAtIndex:indexPath.row];
    }
    else if (tableView == self.tableView2){
        cell.textLabel.text = [names objectAtIndex:indexPath.row];
    }
    return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
    if (tableView == self.tableView1){
        rowNumber1 = indexPath.row;
    }
    else if (tableView == self.tableView2){
        rowNumber2 = indexPath.row;
    }
}

- (IBAction)add:(id)sender {
    BOOL exists = [existingNames containsObject:nameField.text];

    if(exists == FALSE){
        [names addObject:nameField.text];
        [companies addObject:companyField.text];
        [existingNames addObject:nameField.text];
        [existingCompanies addObject:companyField.text];
    }
    else{
        [names addObject:nameField.text];
        [companies addObject:companyField.text];
    }

    [_tableView1 reloadData];
    [_tableView2 reloadData];

    nameField.text=@"";
    companyField.text=@"";
}

- (IBAction)addExisting:(id)sender {
    [existingNames addObject:[names objectAtIndex:rowNumber1]];
    //[companies addObject:[existingCompanies objectAtIndex:rowNumber]];

    [_tableView2 reloadData];
}

- (IBAction)remove:(id)sender {
    [existingNames removeObjectAtIndex:rowNumber2];
    [existingCompanies removeObjectAtIndex:rowNumber2];

    [_tableView2 reloadData];
}

@end
4

1 回答 1

1

以下方法是UITableViewDataSourceUITableViewDelegate协议的一部分

tableView:numberOfRowsInSection:
tableView:cellForRowAtIndexPath:
tableView:didSelectRowAtIndexPath:

并且将由您的表格视图调用,假设您已经分配了表格视图的属性delegatedataSource属性。然而,这些方法,

tableView2:numberOfRowsInSection:
tableView2:cellForRowAtIndexPath:
tableView2:didSelectRowAtIndexPath:

不是协议的一部分,不会被表视图调用。看起来您可能会将您的属性名称(例如tableView)与协议方法名称(例如 )混淆tableView:numberOfRowsInSection:。你需要做的是:

  1. 如果您还没有这样做,请将您的视图控制器设置为delegateanddataSource为您的tableViewand tableView2
  2. 在您需要实现的每个数据源和委托方法中,处理两个表的情况。

例如,您的tableView:numberOfRowsInSection:方法如下所示:

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    if (tableView == self.tableView) {
        return [existingNames count];
    }

    else if (tableView == self.tableView2) {
        return [names count];
    }

    return 0;
}
于 2013-06-12T23:49:16.090 回答