0

1 行のセルのみを返す場合、これは完璧に機能します。しかし、1 つ以上入れると、エラー メッセージが表示されます。

ユニークなデザインのテーブル セルを 1 つ持つ xib ファイルを作成しましたが、それを繰り返し使用して、いくつかのラベルだけを変更したいだけです。私はこれについて間違った方法で進んでいますか?

    - (void)viewDidLoad
    {
        [super viewDidLoad];

        // 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)didReceiveMemoryWarning
    {
        [super didReceiveMemoryWarning];
        // Dispose of any resources that can be recreated.
    }

    #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.
        return 2;
    }


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

        SectionCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];

        if (cell == nil)
        {


            NSArray * nib = [[NSBundle mainBundle] loadNibNamed:@"ButtonCell" owner:self options:nil];

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

            cell = (SectionCell *)[nib objectAtIndex:0];

        }


        cell.backgroundView.layer.masksToBounds = YES;
        cell.backgroundView.layer.cornerRadius = 20.0;

        cell.name.text=@"Cell Test";


        tableView.backgroundView = nil;
        tableView.backgroundColor = [UIColor clearColor];
        return cell;
    }

    /*
    // Override to support conditional editing of the table view.
    - (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath
    {
        // Return NO if you do not want the specified item to be editable.
        return YES;
    }
    */


    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        return 78;
    }
4

3 に答える 3

1

切り取られたこのコードに変更します。

if (cell == nil)
    cell = [[[SectionCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier] autorelease];

セルオブジェクトを自分でインスタンス化するため、NSBundleロジックは不要になったため、削除します。

例:

 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        static NSString *simpleTableIdentifier = @"Cell";
        SectionCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
        if (cell == nil)
            cell = [[[SectionCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier ] autorelease];

        cell.backgroundView.layer.masksToBounds = YES;
        cell.backgroundView.layer.cornerRadius = 20.0;
        cell.name.text=@"Cell Test";
        tableView.backgroundView = nil;
        tableView.backgroundColor = [UIColor clearColor];
        return cell;
    }

ヒント:

テーブルビューの背景を継続的に設定する必要はありません。オブジェクトが最初にロードされるときに設定できます。

于 2013-02-06T20:15:31.007 に答える
1

を使用する代わりに:

cell = [nib objectAtIndex:indexPath.row];

使用する:

if (cell == nil) {
    NSArray * nib = [[NSBundle mainBundle] loadNibNamed:@"ButtonCell" owner:self options:nil];
    cell = (SectionCell *)[nib objectAtIndex:0];

}

あなたのペン先にはおそらくオブジェクトが1つしかないため、つまりカスタムテーブルビューセルです。

PS: カスタム クラスが "SectionCell" に設定された単一のカスタム ビューを持つ "ButtonCell" という名前の xib があると仮定します。

于 2013-02-06T19:17:28.590 に答える
0

答えを見つけました。テーブルビューに静的を使用せず、動的プロトタイプを使用する必要がありました。唯一の欠点は、カスタムの xib セルを使用できず、デフォルトのセルを変更して静的セルにできるだけ近づけなければならなかったことです。

于 2013-02-06T21:23:44.987 に答える