Сохранение содержимого UIwebview в фотогалерею

На u tube есть видеоурок, который показывает, как это сделать. Он состоит из UIwebview и кнопки на панели инструментов для сохранения содержимого. Мне не повезло с этой работой. Может ли кто-нибудь взглянуть и увидеть, как они могут заставить это работать. Спасибо заранее.

http://www.youtube.com/watch?v=gDPca3JIc_s&feature=player_embedded# < / а>

///////////////////////////////////////////////////////////////////
//
//  SaveWebViewController.h
//  SaveWeb
//
//  
//  Copyright __MyCompanyName__ 2010. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface SaveWebViewController : UIViewController {
 IBOutlet UIWebView *webview;
} 

@property (nonatomic, retain) IBOutlet UIWebView *webview;

- [IBAction]saveWeb:(id)sender;


@end



////////////////////////////////////////////////////////////////////////////////
//
//  SaveWebViewController.m
//  SaveWeb
//
//  
//  Copyright __MyCompanyName__ 2010. All rights reserved.
//

#import "SaveWebViewController.h"

@implementation SaveWebViewController

- (IBAction)saveWeb:(id)sender {

 UIGraphicsBeginImageContext(webView.frame.size);
 [self.view.layer renderInContext: UIGraphicsGetCurrentContext()];
 UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
 UIGraphicsEndImageContext();
 UIImageWriteToSavedPhotosAlbum(viewImage, nil, nil, nil); 
}



// The designated initializer. Override to perform setup that is required before the view is loaded.
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
    if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
        // Custom initialization
    }
    return self;
}



// Implement loadView to create a view hierarchy programmatically, without using a nib.
- (void)loadView {
}



//Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad {
 [super viewDidLoad];

 [webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://google.com"]]];
}



// Override to allow orientations other than the default portrait orientation.
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}


- (void)didReceiveMemoryWarning {
 // Releases the view if it doesn't have a superview.
    [super didReceiveMemoryWarning];

 // Release any cached data, images, etc that aren't in use.
}

- (void)viewDidUnload {
 // Release any retained subviews of the main view.
 // e.g. self.myOutlet = nil;
}


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

@end

person How2iphone    schedule 02.04.2010    source источник
comment
У вас есть конкретный вопрос? С чем у вас проблемы? Что не так и почему? Ваш вопрос слишком расплывчатый, чтобы отвечать прямо сейчас.   -  person Shaggy Frog    schedule 02.04.2010
comment
Ошибка сборки при запуске в iphone sdk. Требуется, чтобы кто-нибудь просмотрел видео и проверил приведенный выше код на наличие опечаток. Выполняется на xcode iphone 3.1 sdk.   -  person How2iphone    schedule 02.04.2010
comment
Это не правильный вопрос для Stack Overflow. Опишите вашу проблему как можно точнее.   -  person Shaggy Frog    schedule 02.04.2010
comment
Пожалуйста, посмотрите мой ответ в этом сообщении; -): [stackoverflow.com/questions/469764/ [1]: stackoverflow.com/questions/469764/   -  person PeakJi    schedule 05.08.2011


Ответы (1)


person    schedule
comment
Ага! Не знаю, помогло ли это оригинальному плакату, но мне это помогло! Спасибо! - person Ash; 04.09.2010
comment
к какому объекту я должен привязать этот метод? - person Sobiaholic; 06.09.2012