-1

最初のビューに 2 つのテキスト フィールドがあるこの基本的なショッピング リスト アプリがあります。1 つはアイテムの名前で、もう 1 つはアイテムの数量です。ユーザーがこれらの 2 つのエントリを入力して保存ボタンを押すと、アプリはテーブル ビュー コントローラーに移行し、そこでエントリが最初に item というオブジェクトに格納され、次にオブジェクトがアイテムの配列に格納されます。次に、必要なすべてのテーブル ビュー メソッドを実装し、アイテムをテーブル ビューに表示します。残念ながら何も表示されていません。エントリを保存すると、テーブル ビューが空白になります。NSLog でデバッグを行った後、重要なメソッド tableviewcellForRowAtIndexPath が呼び出されていないことがわかりました。他の人にも同様の質問があり、解決策は tableviewcontroller をデリゲートとして設定することであることがわかりました。それを試しましたが、うまくいきませんでした。私のコードの何が問題なのか知っていますか? ありがとう。

これが最初の画像のView Controllerです。次に、tableviewControllerコードを示します

   #import "TVViewController.h"
#import "TableViewController.h"
//#import "TableViewController.m"

@implementation TVViewController
@synthesize title;//one of the text fields
@synthesize subtitle;//the other text field

-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
    if ([segue.identifier isEqualToString:@"Save"]) {
        NSString *string1 = self.title.text;
        NSString *string2 = self.subtitle.text;
        [segue.destinationViewController addName: string1 andNumber:string2];
    }
}




- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Release any cached data, images, etc that aren't in use.
}

#pragma mark - View lifecycle

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
}

- (void)viewDidUnload
{
    [self setTitle:nil];
    [self setSubtitle:nil];
    [super viewDidUnload];
    // Release any retained subviews of the main view.
    // e.g. self.myOutlet = nil;
}

- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
}

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
}

- (void)viewWillDisappear:(BOOL)animated
{
    [super viewWillDisappear:animated];
}

- (void)viewDidDisappear:(BOOL)animated
{
    [super viewDidDisappear:animated];
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
    return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}

@end

それは私のビューコントローラです これは私のテーブルビューコントローラです、デバッグ目的のnslogは無視してください

 #import "TableViewController.h"
#import "Item.h"

@implementation TableViewController

@synthesize items;

-(void) addName:(NSString *) name
      andNumber:(NSString *) numberOfItems
{
    Item *item = [[Item alloc] init];
    item.itemName = name;
    item.itemQuantity = numberOfItems;
    [self.items addObject:item];
    NSLog(@"Data has been passed");

}


- (id)initWithStyle:(UITableViewStyle)style
{
    self = [super initWithStyle:style];
    if (self) {

    }

    return self;
}

- (void)didReceiveMemoryWarning
{
    // Releases the view if it doesn't have a superview.
    [super didReceiveMemoryWarning];

    // Release any cached data, images, etc that aren't in use.
}

#pragma mark - View lifecycle

- (void)viewDidLoad
{
    [super viewDidLoad];


    NSLog(@"VIew is ready");
    //[self.tableView reloadData];



    // Uncomment the following line to preserve selection between presentations.
    // self.clearsSelectionOnViewWillAppear = NO;

    // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
    // self.navigationItem.rightBarButtonItem = self.editButtonItem;
}

- (void)viewDidUnload
{
    [super viewDidUnload];
    // Release any retained subviews of the main view.
    // e.g. self.myOutlet = nil;
}

- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];

}

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
}

- (void)viewWillDisappear:(BOOL)animated
{
    [super viewWillDisappear:animated];
}

- (void)viewDidDisappear:(BOOL)animated
{
    [super viewDidDisappear:animated];
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}

#pragma mark - Table view data source



- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    NSLog(@"list initialized by count");
    // Return the number of rows in the section.

    return [self.items count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"Item in cart";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

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

    // Configure the cell...

    Item *item = [self.items objectAtIndex:indexPath.row];
    cell.textLabel.text = item.itemName;
    cell.detailTextLabel.text = item.itemQuantity;
    return cell;

}
4

1 に答える 1

2

このためにtableVeiwのdataSourceを設定する必要があることを覚えている限り、デリゲートはイベントを受信するためのものです

http://developer.apple.com/library/ios/#documentation/uikit/reference/UITableViewDataSource_Protocol/Reference/Reference.html#//apple_ref/occ/intf/UITableViewDataSource

于 2012-08-15T19:17:26.017 に答える