0
嗨,我有一個小問題。我嘗試了所有類型的解決方案,我可以找到,減去過時的代碼,獲取UIWebView
鏈接打開Safari並將其加載到該主題。試圖打開與Safari的UIWebView鏈接
到目前爲止,我可以得到具體的大小加載模擬器,但每次我點擊它,它就加載在那裏。我必須錯過一個重要的步驟,或者我已經完全搞砸了AppDelegate .h .m
和ViewController .h .m
。
我很喜歡編碼設備,直到第三代iPod/iPhone。我知道Xcode喜歡更新,我有5.0.2版本。我基本上是No0b,因爲我已經退出了一段時間。
如果您有任何提示,請讓我知道。除了放棄它。大聲笑。我知道這是可以做到的。以下是我有...
#import "WIAppDelegate.h"
@implementation WIAppDelegate
- (BOOL)webview:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request
navigationType:(UIWebViewNavigationType)navigationType {
// This practically disables web navigation from the webView.
if (navigationType == UIWebViewNavigationTypeLinkClicked) {
[[UIApplication sharedApplication] openURL:[request URL]];
return FALSE;
}
return TRUE;
}
#import <UIKit/UIKit.h>
@interface WIViewController : UIViewController
@property (strong, nonatomic) IBOutlet UIWebView *webview;
@end
#import "WIViewController.h"
@interface WIViewController()
@end
@implementation WIViewController
- (void)viewDidLoad {
[super viewDidLoad];
NSString *fullURL = @"http://THESITE.com";
NSURL *url = [NSURL URLWithString:fullURL];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
[_webview loadRequest:requestObj];
}
@end