选定的 UITableView 单元格未加载另一个视图
大家好,我在这里遇到一个奇怪的问题。我试图让我的表推送另一个视图,称为“productviewcontroller”。
我在标题上导入“productviewcontroller”和“myappviewcontroller”。
#import "SearchViewController.h"
#import "MyAppViewController.h"
#import "TBXML.h"
#import "ProductViewController.h"
我正在设置我的桌子以推动另一个视图。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
ProductViewController *productViewController = [[ProductViewController alloc] initWithNibName:@"ProductViewController" bundle:[NSBundle mainBundle]];
[self.navigationController pushViewController:productViewController animated:YES];
[productViewController release];
NSLog(@"Test.");
}
当我选择单元格时,它会给我消息“测试”。但不要推动另一种观点。 我在应用程序委托上设置导航控制器。
我做错了什么?
谢谢!
Hey everbody, im getting a curious problem here. Im trying to make my table push another view, called 'productviewcontroller'.
Im importing both 'productviewcontroller' and 'myappviewcontroller' on header.
#import "SearchViewController.h"
#import "MyAppViewController.h"
#import "TBXML.h"
#import "ProductViewController.h"
And im setting my table to push the another view.
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
ProductViewController *productViewController = [[ProductViewController alloc] initWithNibName:@"ProductViewController" bundle:[NSBundle mainBundle]];
[self.navigationController pushViewController:productViewController animated:YES];
[productViewController release];
NSLog(@"Test.");
}
When i selects the cell, it gives me the message 'test'. But dont push the another view.
Im setting the navigationController on app delegate.
What im doing wrong?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来不错。 ProductView 笔尖是否包含导航控制器?
It looks right. Does the ProductView nib include a navigation controller?
在此视图中使用导航控制器,您要从中推送“ProductControllerView”并将其与 IBOutlet 绑定,然后您就可以推送视图。
Use your navigation controller in this view from which you want to push "ProductControllerView" and bind it with IBOutlet and you are able to push the view..