0

私はこれが一般的な質問であることを知っていますが、どの答えも私の問題を解決しません。アプリにUIWebViewがあります。すべてが正しく設定されています。デリゲートが設定されている場合、webViewはビューコントローラのプロパティです。viewControllerのロード時にhtml文字列をロードするように設定されています。html文字列が読み込まれると、webViewDidFinishLoadメソッドで、これが初めて読み込まれたかどうかが確認され、初めて読み込まれた場合は、URLを使用してリクエストを読み込むように指示されます。URLに使用する文字列は、viewControllerのプロパティです。その文字列は、まさにそれが想定されているものです。webViewが実際にリクエストをロードするのを妨げる何かがあります。どんなアイデアでも大歓迎です。ありがとうございました

    @interface WebViewController : UIViewController <UIWebViewDelegate, UIActionSheetDelegate, UIPrintInteractionControllerDelegate, MFMailComposeViewControllerDelegate, NSURLConnectionDelegate>

@property (nonatomic, assign) BOOL firstLoad;
@property (nonatomic, retain) UIWebView *webView;
@property (nonatomic, retain) NSString *prefixURLString;
@property (nonatomic, retain) NSString *suffixURLString;
@property (nonatomic, retain) UIActionSheet *actionSheet;

- (id)initWithTitle:(NSString *)newTitle andSuffixURL:(NSString *)suffix;
- (void)reload;
- (void)addActionButton;
- (void)showActions:(UIBarButtonItem *)sender;
- (void)dismissActionSheet;

@end



@implementation WebViewController

@synthesize webView;
@synthesize prefixURLString;
@synthesize suffixURLString;
@synthesize firstLoad;
@synthesize actionSheet;

- (id)initWithTitle:(NSString *)newTitle withPrefixURL:(NSString *)prefix andSuffixURL:(NSString *)suffix
{
    self = [super initWithNibName:nil bundle:nil];
    if (self) {
        // Custom initialization
        [self setPrefixURLString:prefix];
        [self setFirstLoad:YES];
        [self setTitle:newTitle];
        [self setSuffixURLString:suffix];
        [self setActionSheet:nil];
    }
    return self;
}

- (id)initWithTitle:(NSString *)newTitle andSuffixURL:(NSString *)suffix
{
    return [self initWithTitle:newTitle withPrefixURL:@"https://customer.stld.com/flatroll/ios/%@" andSuffixURL:suffix];
}

- (void)reload
{
    if(self.prefixURLString && self.suffixURLString)
    {
        NSString *fullURLString = [NSString stringWithFormat:self.prefixURLString, [self.suffixURLString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding]];
        [self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:fullURLString]]];
    }
}
- (void)dealloc
{
    [suffixURLString release]; suffixURLString = nil;
    [prefixURLString release]; prefixURLString = nil;
    [actionSheet release]; actionSheet = nil;
    [super dealloc];
}


- (void):(UIWebView *)aWebView didFailLoadWithError:(NSError *)error
{
    //NSLog(@"WebViewController:DidFailLoadWithError: %@", [error localizedFailureReason]);
    [self setTitle:@"Loading Error"];
    [self.webView loadHTMLString:[NSString stringWithFormat:@"<html><head><meta name=\"viewport\" content=\"width=device-width, user-scalable=yes\" /></head><body>Loading error:<br />%@</body></html>", [error localizedFailureReason]] baseURL:nil];
}

- (void)webViewDidFinishLoad:(UIWebView *)aWebView
{
    if(self.firstLoad)
    {
        [self setFirstLoad:NO];
        [self reload];
        [self addActionButton];
    }
}

#pragma mark - View lifecycle

- (void)loadView
{
    UIWebView *newWebView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 0, 0)];
    [newWebView setDelegate:self];
    [newWebView setScalesPageToFit:YES];
    [newWebView setUserInteractionEnabled:YES];
    [self setWebView:newWebView];
    [self setView:newWebView];
    [newWebView release];
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    [self.webView loadHTMLString:@"<html><head><meta name=\"viewport\" content=\"width=device-width, user-scalable=yes\" /></head><body><br />Gathering data and generating report.<br />Depends on data and parameters you have requested, this could take time.  Please wait...</body></html>" baseURL:nil];
}

- (void)viewDidUnload
{
    [super viewDidUnload];
    // Release any retained subviews of the main view.
    // e.g. self.myOutlet = nil;
    [self.webView setDelegate:nil];
    [self setWebView:nil];
    [self setView:nil];
}
4

2 に答える 2

0

私の問題は とは何の関係もないことがわかりましたUIWebViewURLConnectionDelegateアプリ用に設定した資格情報の永続性を変更する必要がありました。に設定していましNSURLCredentialPersistanceNoneたが、に変更しましたNSURLCredentialPersistenceSession。これが、私とまったく同じ問題を抱えていた他の人の助けになることを願っています

于 2012-09-26T14:53:58.280 に答える