1

X-Code で再びヘルプが必要です。ストーリーボードで次のようなアプリの連絡先リストを作成しています。

ストーリーボード連絡先リスト

「A」を押すと、詳細ページに移動します。

「B」を押すと、「A」と同じページに移動します。

c、D、Eと同じ.....

これが私が使用したコードです:

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

{ static NSString *simpleTableIdentifier = @"PhoneA";

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];

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

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

}

static-return セルからコピー/貼り付けを試み、セルを cell1 に、sympleTableIdentifier を sympleTableIdentifier1 に変更しました。

他に何か変更する必要がありますか?

TableView は正常に動作します。すべての名前がそこにあり、DetailView が表示されますが、常に同じです!!!!

助けてくれたTHX

4

0 に答える 0