iOS UIwebviewでハイパーリンクとコピー/貼り付けメニューを無効にしようとしているので、グーグルで検索したところ、多くの回答がありました。その後、「webviewdidfinishload が呼び出されない」という別の問題が発生したため、コードを追加して助けを求めました。(IBOutletを正しく接続したと確信しています)
さらに、私はまだ mainWebView.delegate = self の代わりに self.mainWebView.delegate = self を置くという考えを理解していません 誰かが違いを説明できますか? [[[mainWebView subviews] lastObject] setScrollEnabled:YES] [[[mainWebView subviews] lastObject] setScrollsToTop:NO]
mainWebView.scalesPageToFit = YES のような他の機能が機能しているかどうかはわかりません。
ios5からios6.1で動作するはずですありがとう
.h ファイル内
@interface HRViewController : UIViewController <UIWebViewDelegate>
{
UIWebView *mainWebView;
}
@property (strong, nonatomic) IBOutlet UIWebView *mainWebView;
@end
.m ファイルで
@interface HRViewController ()
@end
@implementation HRViewController
@synthesize mainWebView;
- (void)viewDidLoad
{
[self startWebView];
[super viewDidLoad];
}
- (void)startWebView
{
mainWebView.delegate = self;
[[[mainWebView subviews] lastObject] setScrollEnabled:YES];
[[[mainWebView subviews] lastObject] setScrollsToTop:NO];
mainWebView.scalesPageToFit = YES;
mainWebView = [[UIWebView alloc] initWithFrame:self.view.bounds];
mainWebView.scalesPageToFit = YES;
[self.view addSubview:self.mainWebView];
NSURL *url = [NSURL URLWithString:/" @"http://www.mysite.com" "/];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[mainWebView loadRequest:request];
}
- (void)webViewDidFinishLoad:(UIWebView *)WebView {
NSLog(@"finish");
[WebView stringByEvaluatingJavaScriptFromString: @"document.documentElement.style.webkitUserSelect='none';"];
[WebView stringByEvaluatingJavaScriptFromString: @"document.documentElement.style.webkitTouchCallout='none';"];
}
- (void)webViewDidStartLoad:(UIWebView *)mainWebView {
NSLog(@"start");
}
- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error {
NSLog(@"Error for WEBVIEW: %@", [error description]);
}
EDIED 以下のコードを使用しましたが、まだ機能しません...これらのどれも機能しません!!!!!
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender
{
NSLog(@"canPerformAction: %@",NSStringFromSelector(action));
if (action == @selector(copy:) ||
action == @selector(paste:)||
action == @selector(cut:)) {
return NO;
}
return NO;
}
この
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender
{
UIMenuController *menuController = [UIMenuController sharedMenuController];
if (menuController) {
[UIMenuController sharedMenuController].menuVisible = NO;
}
return NO;
}
これでも - (void)viewDidLoad { mainWebView.delegate = self; }
- (void)webViewDidFinishLoad:(UIWebView *)webView {
NSLog(@"finish");
// Disable user selection
[webView stringByEvaluatingJavaScriptFromString:@"document.documentElement.style.webkitUserSelect='none';"];
// Disable callout
[webView stringByEvaluatingJavaScriptFromString:@"document.documentElement.style.webkitTouchCallout='none';"];
}
これも - (void)viewDidLoad { [self longPress:self.mainWebView]; }
- (void)longPress:(UIView *)webView {
UILongPressGestureRecognizer* longPress = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleLongPress)];
longPress.allowableMovement=100;
longPress.minimumPressDuration=0.3;
longPress.delaysTouchesBegan=YES;
longPress.cancelsTouchesInView=YES;
[webView addGestureRecognizer:longPress];
}
// I just need this for the selector in the gesture recognizer.
- (void)handleLongPress {
}
私を助けてください..それは今一週間私を夢中にさせます..