Как бороться с двумя TableView - PullRequest
       1

Как бороться с двумя TableView

1 голос
/ 16 февраля 2012

У меня есть два экземпляра UITableView в одном приложении, и проблема в том, что я не знаю, как определить, что должна отображать каждая таблица.Вот код:

.h:

{
NSArray *array1;
NSArray *array2;
IBOutlet UITableView *table1;
IBOutlet UITableView *table2;
}

.m:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return [array1 count];
}

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

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

    cell.textLabel.text = [array1 objectAtIndex:indexPath.row];
    return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{

    UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
}

Этот код работает только для одной таблицыЯ не знаю, как настроить другую таблицу с array2.У вас есть идеи, люди?

Ответы [ 3 ]

4 голосов
/ 17 февраля 2012

Все, что вам нужно сделать, это проверить, какую UITableView вы настраиваете в delegate/datasource методах.Попробуйте:

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView; {
  if(tableView == table1){
    return 1; // The number of sections in table1;
  }
else if(tableView == table2){
    return 1; // The number of sections in table2;
  }
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section; {
  if(tableView == table1){
    return [array1 count];
  }
  else if(tableView == table2){
    return [array2 count];
  }
}

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

  UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
  if(cell == nil){
      cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
  }
  if(tableView == table1){
    cell.textLabel.text = [array1 objectAtIndex:indexPath.row];;
  }
  else if(tableView == table2){
    cell.textLabel.text = [array2 objectAtIndex:indexPath.row];;
  }
  return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath; {
  UITableViewCell * cell = [tableView cellForRowAtIndexPath:indexPath];
}

Надеюсь, что поможет!

2 голосов
/ 17 февраля 2012

В методах UITableViewDataSource вы должны сравнивать свои ивары с делегатами.

как это:

    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    if([tableView isEqual:table1])
    {
          return [array1 count];
    }
    else if([tableView isEqual:table2])
    {
          return [array2 count];
    }
    else
    {
          return 0;
    }
}

Сделайте это для каждого метода в обратном вызове.

Но я бы порекомендовал иметь только один tableView и загружать в него различное содержимое на основе какого-либо флага. Вы должны были бы вызвать [tableView reloadData] для того, чтобы это функционировало и установило флаг. Тогда вы бы изменили приведенный выше код следующим образом if([flag isEqualToString:@"table1"]) { //code for table1 }

Если у вас нет двух таблиц в одном представлении. Тогда первый метод - это то, что вы должны сделать.

0 голосов
/ 16 февраля 2012

Обычный способ сделать это - создать отдельные объекты источника данных / делегата для каждого табличного представления.Они не должны быть отдельными классами.Они могут быть двумя экземплярами одного и того же класса.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...