あるクラス名があり、そのクラスにsearchresultviewcontroller
別のcustomcell
クラスがあり、そのボタンをクリックすると別のクラスに移動します。添付のカスタムセル画像searchresultcell
UIButton
xib
// .h ファイルの場合
@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];
}