0

我有一个用于 iPad 的拆分视图控制器,左侧有一个向下钻取表。我可以毫无问题地使用向下钻取填充表格,但我似乎无法让我在左侧的 UITableView 中单击的项目显示在右侧的 detailDescriptionLabel 中。

我的 ProductViewController.m 中有以下代码

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
[tableView deselectRowAtIndexPath:indexPath animated:YES];

NSLog(@"Row clicked: %i", indexPath.row);

if (_delegate != nil) {
    Product *product = (Product *) [_products objectAtIndex:indexPath.row];
    [_delegate productSelectionChanged:product];
}

DetailedVC *detailView = [[DetailedVC alloc] initWithNibName:@"DetailedVC" bundle:[NSBundle mainBundle]];
NSLog(@"User clicked on: %@", [NSString stringWithFormat:@"%d",indexPath.row]);
detailView.detailDescriptionLabel.text = [NSString stringWithFormat:@"%d",indexPath.row];
[self.navigationController pushViewController:detailView animated:YES];
}

这里发生的事情是我将DetailedVC 推到我的表格视图所在的左侧,我真正想要做的是在右侧的详细视图中看到单击的行已更新。我可以在“日志”窗口中看到我点击了某个索引,所以我知道我正在捕获点击事件并获得一个值。

在我的DetailedVC.m 中,我有以下代码来更新这个标签。

- (void)viewDidLoad
{
[super viewDidLoad];
[self configureView];
}

- (void) configureView {

if (self.detailItem) {

    self.detailDescriptionLabel.text = [self.detailItem description];

    NSLog(@"Item: %@", [self.detailItem description]);
}
}

如果我编辑 viewDidLoad 我会得到 [self.detailItem 描述] 的 (null)

- (void)viewDidLoad
{
[super viewDidLoad];
NSLog(@"Detail description label: %@", [self.detailItem description]);
}

产品视图控制器.h

@interface ProductViewController : UIViewController <UITableViewDataSource, UITableViewDelegate> {

NSMutableArray *_products;
UITableView *_productsTableView;
id<ProductSelectionDelegate> _delegate;
}

@property (nonatomic, strong) IBOutlet UITableView *productsTableView;
@property (nonatomic, retain) NSMutableArray *products;
@property (nonatomic, assign) id<ProductSelectionDelegate> delegate;

@end

AppDelegate.h

@class ProductViewController;
@class DetailedVC;

@interface TabAndSplitAppAppDelegate : NSObject <UIApplicationDelegate, UITabBarControllerDelegate> {
UIWindow *window;
UITabBarController *tabBarController;
ProductViewController *_productViewController;
DetailedVC *_detailedViewController;
}

@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet UITabBarController *tabBarController;
@property (nonatomic, retain) IBOutlet ProductViewController *productViewController;
@property (nonatomic, retain) IBOutlet DetailedVC *detailedViewController;

@end

AppDelegate.m

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

NSMutableArray *products = [NSMutableArray array];
[products addObject:[[Product alloc] initWithName:@"Product 1 Name" desc:@"Product 1 Description"]];
_detailedViewController.product = [products objectAtIndex:0];

// Override point for customization after app launch.
//create split view controller
RootVC *rvc=[[RootVC alloc] init];
rvc.title=@"Root VC";
DetailedVC *dvc=[[DetailedVC alloc] init];
dvc.title=@"Detailed VC";
_productViewController.delegate = _detailedViewController;

MySplitViewController *msc = [[MySplitViewController alloc] initwithLeftVC:rvc rightVC:dvc];
msc.title=@"First";
//create a temporary VC to show in second tab
SecondViewController *vc2 = [[SecondViewController alloc] init];
vc2.title=@"Second";

//make an array containing these two view controllers
NSArray *viewControllers = [NSArray arrayWithObjects:msc,vc2,nil];
[tabBarController setViewControllers:viewControllers];
tabBarController.view.backgroundColor=[UIColor blackColor];

for(UITabBarItem*t in tabBarController.tabBar.items)
{
    t.image=[UIImage imageNamed:@"icon.png"];
    t.badgeValue=[NSString stringWithFormat:@"%d",([tabBarController.tabBar.items indexOfObject:t]+1)];
}

//the views are retained their new owners, so we can release
[rvc release];
[dvc release];
[msc release];
[vc2 release];

// Add the tab bar controller's current view as a subview of the window
[self.window addSubview:tabBarController.view];
[self.window makeKeyAndVisible];

return YES;
}

MySplitViewController.h

#import <UIKit/UIKit.h>

@interface MySplitViewController : UIViewController
{
UINavigationController *leftController;
UINavigationController *rightController;
}

@property (nonatomic, retain) UINavigationController *leftController;
@property (nonatomic, retain) UINavigationController *rightController;

- (void)layoutViews:(UIInterfaceOrientation)orientation initialVerticalOffset:(float)offset;

- (MySplitViewController*) initwithLeftVC:(UIViewController*)leftvc rightVC:(UIViewController*)rightvc;
@end

MySplitViewController.m

- (MySplitViewController*) initwithLeftVC:(UIViewController*)leftvc rightVC:(UIViewController*)rightvc
{
if(self=[super init])
{
    UINavigationController *lnc=[[UINavigationController alloc] initWithRootViewController:leftvc];
    lnc.navigationBarHidden=NO;
    self.leftController=lnc;
    [lnc release];

    UINavigationController *rnc=[[UINavigationController alloc] initWithRootViewController:rightvc];
    rnc.navigationBarHidden=NO;
    self.rightController=rnc;
    [rnc release];
}
return self;
}

产品.h

#import <Foundation/Foundation.h>

@interface Product : NSObject {

NSString *_productID;
NSString *_productDescription;
}

@property (nonatomic, copy) NSString *productID;
@property (nonatomic, copy) NSString *productDescription;

- (Product *)initWithName:(NSString *)productID desc:(NSString *)productDescription;

@end

产品.m

#import "Product.h"

@implementation Product

@synthesize productID = _productID;
@synthesize productDescription = _productDescription;

- (Product *)initWithName:(NSString *)productID desc:(NSString *)productDescription {

if ((self = [super init])) {

    self.productID = productID;
    self.productDescription = productDescription;
}

return self;
}

@end
4

1 回答 1

2

好的,请在 ProductViewController 中试试这个:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
  [tableView deselectRowAtIndexPath:indexPath animated:YES];

  NSLog(@"Row clicked: %i", indexPath.row);

  Product *product = (Product *) [_products objectAtIndex:indexPath.row];
  NSLog(@"Product: %@", product);

  TabAndSplitAppAppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
  NSLog(@"appDelegate: %@", appDelegate);
  UITabBarController *tbc = appDelegate.tabBarController;
  NSLog(@"tbc: %@", tbc);
  MySplitViewController *msvc = tbc.selectedViewController;
  NSLog(@"msvc: %@", msvc);
  UINavigationController *rnc = msvc.rightController;
  NSLog(@"rnc: %@", rnc);
  DetailedVC *dvc = rnc.topViewController;
  NSLog(@"dvc: %@", dvc);

  dvc.detailDescriptionLabel.text = @"We found our DetailedVC";

  [dvc productSelectionChanged:product];
}

此代码不是您应该如何正确构建程序的示例。这只是为了帮助我(和你)理解你的视图控制器层次结构。

在选择产品时通知代表的最初想法是正确的,它只是在您的情况下不起作用,因为对象没有正确连接。不过,您应该尝试这样做。在您发布的代码中,我看不到 theProductViewController和 theDetailedVC都直接可见的位置,因此您可以说

productViewControllerInstance.delegate = detailedVCinstance;

最接近的是在 AppDelegate 中,您拥有可能最终将创建的RootVC实例和. 也许您可以将 ' 赋予'以便它可以在创建时将其设置为 ' 代表。祝你好运!rvcProductViewControllerdvcdvcrvcProductViewController

于 2012-08-15T17:22:07.880 回答