iPhoneでpopviewコントローラーを使用するときに、あるビューから別のビューに画像を渡すための正確なソリューションがあります。
この問題のガイドラインを教えてください。ありがとう。
iPhoneでpopviewコントローラーを使用するときに、あるビューから別のビューに画像を渡すための正確なソリューションがあります。
この問題のガイドラインを教えてください。ありがとう。
imageviewがexistingImageViewであるとします。
.h
@interface SecondController:UIViewController
@property(保持、非アトミック)UIImageView * previousImageView;
.m
@interface SecondController()
@終わり
@implementation SecondController @synthasize previousImageView;
ナビゲート中のfirstControllerで、次のように使用します。
SecondController *second = [[SecondController alloc] init];
[self.navigationController pushViewController:second animated:YES];
[second setPreviousImageView:existingImageView];
[photoController release];
画像を切り抜いた後、existingImageViewに反映されます。
Protocol Delegate メソッドを使用してイメージを使用するか、イメージを別のコントローラ イメージ オブジェクトに割り当てて使用します。