0

我在 IB 中设置了一些视图控制器。一个具有大约 6 个单元格(以编程方式填充)的 TableView。然后还有 6 个视图控制器(每个单元格一个)。

我想让它在我的

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

}

我可以将视图切换到与单击的单元格相关的任何视图。

因此,如果他们单击单元格1,则转到视图1,如果单击单元格2,则转到视图2。

顺便说一句,这就是我初始化表的方式,它工作正常。

//tableview datasource delegate methods
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
    return 1;
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
    return showArray.count;
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

static NSString *CellIdentifier = @"Cell";

CustomCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];


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

cell.showLabel.text = [showArray objectAtIndex:indexPath.row];
cell.image.image = [UIImage imageNamed:[imageArray objectAtIndex:indexPath.row]];
cell.seasonLabel.text = [seasonArray objectAtIndex:indexPath.row];

return cell;
}

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
return 106;
}
- (void)insertRowsAtIndexPaths:(NSArray *)indexPaths withRowAnimation:    (UITableViewRowAnimation)animation{


NSIndexPath *newCellPath = [NSIndexPath indexPathForRow:showArray.count
                                              inSection:0];

[self.theatreView insertRowsAtIndexPaths:@[newCellPath]
                        withRowAnimation:UITableViewRowAnimationFade];

}

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

}
4

3 回答 3

0

我不知道你的应用程序的结构,但我认为你可以考虑这个:

- (UIViewController *)getViewControllerAtIndexPath:(NSIndexPath *)indexPath {
    //..you can use "switch" to return the view controller you want
    return ...;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    UIViewController *controller = [self getViewControllerAtIndexPath:indexPath];
    //..push or present your controller
}
于 2012-10-30T04:00:35.050 回答
0

我会根据您的应用程序的结构建议这两种方法中的一种。

[self.navigationController pushViewController:newViewController animated:YES];


[self presentModalViewController:newViewController animated:YES];

//for ios 6.0
[self presentViewController:newViewController animated:animated completion:NULL];

据我所知,您在主菜单的 .xib 文件中创建了很多 uiviewcontrollers。那是对的吗?所以你将拥有 self.theatreViewController。然后,您可以将其作为按钮回调中的参数传递。例如

[self presentViewController:self.theatreViewController animated:animated completion:NULL];

如果我在这里的假设有误,请纠正我。

于 2012-10-29T23:54:03.557 回答
0

在这个方法中使用索引路径属性: (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

喜欢

yourObject = [yourArray objectAtIndex:indexPath];

编辑:-在您的 AppDelegate 中,使用以下方法,执行以下操作:-

-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

{  

  self.window = [[[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]] autorelease];
// Override point for customization after application launch.

  mHomeViewController = [[HomeViewController alloc] initWithNibName:@"HomeViewController" bundle:nil];
  UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:mHomeViewController];
  [mHomeViewController release];

  self.window.rootViewController = navController;
  self.window.backgroundColor = [UIColor whiteColor];
  [self.window makeKeyAndVisible];
  [navController release];
  return YES;
}

现在,在您的 viewController - didSelectRowMethod 中,执行以下操作:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSString * object = [yourArray objectAtIndex:indexPath.row];

    [self.tableView deselectRowAtIndexPath:indexPath animated:YES];

    if(newControllerInstance == nil) // check if it's nil, then initialize and alloc it.
   {
      newControllerInstance = [[NewViewController alloc] initWithNibName:@"NewViewController" bundle:nil];
      [self.navigationController newControllerInstance animated:YES];
      [newControllerInstance release];
   }
}

这应该有效。

于 2012-10-30T04:18:25.323 回答