這裏是我的文件。當我點擊重新加載按鈕時,它會進入我所瞭解的OBJC中的段錯誤。我不認爲這是網站,但主要是沒有得到滿足/返回的東西。它在main.m文件中提供了SIGABRT。我試圖讓殭屍無濟於事,如果這是要走的路,請讓我知道。當我重新加載UIWebView我得到一個信號SIGABRT在我的main.h文件
//
// main.m
// webKitExp
//
// Created by J.Doe on 8/14/17.
// Copyright © 2017 J.Doe. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
//
// ViewController.h
// webKitExp
//
// Created by J.Doe
// Copyright © 2017 J.Doe. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <WebKit/WebKit.h>
@interface ViewController : UIViewController
@property (nonatomic, retain) IBOutlet UIWebView *webView;
@end
//
// ViewController.m
// webKitExp
//
// Created by J.Doe on 8/14/17.
// Copyright © 2017 J.Doe. All rights reserved.
//
#import "ViewController.h"
@interface ViewController()
@end
@implementation ViewController
@synthesize webView;
- (void)viewDidLoad {
[super viewDidLoad];
[UIView setAnimationsEnabled:NO];
NSString *localURL = [[NSBundle mainBundle] pathForResource:@"index" ofType:@"html"];
NSURLRequest *urlRequest = [NSURLRequest requestWithURL:[NSURL fileURLWithPath:localURL]];
[webView loadRequest:urlRequest];
}
- (IBAction)buttonClicked:(UIButton *)sender {
[webView reload];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
}
@end
index.html文件可能未找到。嘗試加載網頁而不是本地文件,看看你是否得到相同的錯誤 –
試試這個呢? [webView loadRequest:urlRequest]; –
我也試過了webView的loadRequest,但這並沒有工作,只要index.html文件,它在同一個文件中,並加載第一次罰款,它只是不重新加載和崩潰,而不是 –