无法从自定义单元格导航到ios 6中的其他视图

时间:2013-08-30 08:53:00

标签: iphone ios

我有一个班级名称是searchresultviewcontroller另一个customcell班级是searchresultcell在该班级中我有一个UIButton,当点击该按钮时会导航到其他班级类。参与的自定义单元xib图片enter image description here

// for .h file

@class SearchResultViewController;
@interface searchresultcellCell : UITableViewCell{


IBOutlet UIButton *btnReadMore;
SearchResultViewController *parent;

}

@property(nonatomic,retain)SearchResultViewController *parent;
@property(nonatomic,retain)IBOutlet UIButton *btnReadMore;
-(IBAction)btnMore:(id)sender;

// .m file
-(void)btnMore:(id)sender{
         NSLog(@"Sucess");
AboutViewController *objAbout = [[AboutViewController       alloc]initWithNibName:@"AboutViewController" bundle:Nil ];
[parent.navigationController pushViewController:objAbout animated:YES];

 }

1 个答案:

答案 0 :(得分:1)

它不会通过parentiew控制器选项解决

您可以使用两个选项

  1. 您可以在视图控制器类中添加通知并调用它 来自自定义单元格类方法的通知
  2. 使用Protocols-delegate