我有一个tableView
,所以当点击单元格时,它会转移到DetailViewController。但它没有任何数据,如图像或文本。如何将此数据传递给我的DetailView?
控制器代码:
.h文件
@interface Sushi:NSObject { IBOutlet UILabel * sushiDescription; IBOutlet UIImageView * sushiPicture; }
@property(非原子,保留)IBOutlet UILabel * sushiDescription; @属性 (非原子的,保留的)IBOutlet UIImageView * sushiPicture;
@end
.m文件
@implementation Sushi
@synthesize sushiDescription, sushiPicture;
- (void)dealloc {[sushiDescription release]; [sushiPicture发布]; [super dealloc]; }
@end
答案 0 :(得分:2)
对于样本,请执行此操作,
1)存储任何值ex:indexpath.row vale in appdelegate
2)在DetailViewController的viewDidLoad中访问该值并相应地显示它