在iPhone中使用popview控制器时,任何人都有将图像从一个视图传递到另一个视图的确切解决方案。
请给我一些关于这个问题的指导方针。谢谢。
使用协议委托方法使用该映像,或者将映像分配给另一个控制器映像对象并使用它。
假设你的图像视图是现有的图像视图;
.h
@interface 第二控制器:UIView控制器
@property (保留,非原子) UIImageView *previousImageView;
.m
@interface 秒控制器 ()
@end
@implementation 第二控制器 @synthasize 上一页图像视图;
现在在第一个控制器中导航时使用它,
SecondController *second = [[SecondController alloc] init];
[self.navigationController pushViewController:second animated:YES];
[second setPreviousImageView:existingImageView];
[photoController release];
裁剪图像后,它将反映到现有的图像视图。