0

私は現在、1 つのテーブル ビュー/クラスから配列を取得し、この配列を使用して別の別のビューにテーブルを設定する iPhone アプリにテーブル ビューを実装しようとしています。クリック/タップされた場合に配列に演習を追加するために使用する方法は次のとおりです。

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

    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
    NSString *str = cell.textLabel.text;
    NSUInteger *index = 0;

    NSMutableArray *array = [[NSMutableArray alloc] init];
    [array insertObject:str atIndex:index];

    self.workout = array;

    [array release];
}

保存ボタンが押されると、この配列はワークアウトの配列 (配列) に保存され、別のビューに表示されます。私はこれに正しいアプローチを取っていますか?

これが私の cellForRowAtIndexPath メソッドです:

- (UITableViewCell *)tableView:(UITableView *)tableView 
         cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSUInteger section = [indexPath section];
    NSUInteger row = [indexPath row];

    NSString *key = [keys objectAtIndex:section];
    NSArray *nameSection = [names objectForKey:key];

    static NSString *SectionsTableIdentifier = @"SectionsTableIdentifier";

    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:
                             SectionsTableIdentifier ];
    if (cell == nil) {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault 
                                       reuseIdentifier: SectionsTableIdentifier ] autorelease];
    }

    cell.textLabel.text = [nameSection objectAtIndex:row];
    return cell;
}
4

1 に答える 1