1

Xcode 4.5.1 でアプリを作成し、別のビューに移動したときに指定した UIImageView に現在の画像を保存する方法を知りたいです。次に、ビューに戻ると、保存された画像が UIImageView に読み込まれますか?

どうもありがとう、感謝します:D

4

1 に答える 1

1

以下に投稿したコードには、uiimage を 2 番目のビュー コントローラーに渡すことが含まれます。また、各コントローラーには、2 つの間を行き来するためのボタンも含まれています。ビューを切り替えても、保存された画像は uiimageview に残ります。

SecondView.h

#import <UIKit/UIKit.h>

@interface SecondView : UIViewController {

IBOutlet UIImageView *yourphotoview;

UIImage *yourimage;
}

@property (retain, nonatomic) UIImage *yourimage;

- (IBAction)back;

@end



SecondView.m

#import "ViewController.h"
#import "SecondView.h"

@interface SecondView ()
@end

@implementation SecondView

@synthesize yourimage;

- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}

- (void)viewDidLoad
{
yourphotoview.image = image;
[super viewDidLoad];
// Do any additional setup after loading the view.
}

- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}


- (IBAction)back {
[self dismissViewControllerAnimated:YES completion:NULL];
}


- (void)dealloc {
[image release];
[super dealloc];
}

@end





ViewController.h

#import <UIKit/UIKit.h>
#import "SecondView.h"

@interface ViewController : UIViewController

{
IBOutlet UISlider *compression;
IBOutlet UISwitch *smurferderp;

SecondView *SecondViewdata;

}

@property (retain, nonatomic) SecondView *SecondViewdata;
@property (retain, nonatomic) IBOutlet UIImageView *theimage;

- (IBAction)switchview:(id)sender;

@end


ViewController.m

#import "ViewController.h"
#import "SecondView.h"

@interface ViewController ()
@end

@implementation ViewController

@synthesize SecondViewdata, theimage;

- (IBAction)switchview:(id)sender {
SecondView *secondview = [self.storyboard instantiateViewControllerWithIdentifier:@"rr"];

self.SecondViewdata = secondview;
SecondViewdata.yourimage = theimage.image;


[self presentViewController: secondview animated:YES completion:NULL];
}

- (void)dealloc {
[theimage release];
[super dealloc];
}

@end
于 2013-04-28T04:38:29.767 に答える