0

javascriptから目的のcファイルを呼び出したいです。

- (void)viewDidLoad
{
webview.delegate = self;

myButton.enabled = NO;

NSString *path=[[NSBundle mainBundle]pathForResource:@"1" ofType:@"html" inDirectory:@"files"];
NSURL *url=[NSURL fileURLWithPath:path];
NSURLRequest *request=[NSURLRequest requestWithURL:url];
[webview loadRequest:request];} 

私はこのコードを使用して自分の html ページを正常に呼び出しています。以下のコードを使用して、目的 c の shouldStartLoadWithRequest メソッドを呼び出しています。

<a href="didTap://button1"><img src="cercle24px.png" /></a>

今、私は新しいTestViewController.mファイルを呼び出しに行きました。このファイルを呼び出す方法は、以下のコードを使用しました.nslogを正しく出力し、アラートボックスも表示します.しかし、次のファイルに移動しません.誰かが知っている場合は助けてください.貴重なご回答をお待ちしております。

    - (BOOL)webView:(UIWebView*)webview shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType
 {  
  NSLog(@"what");
   UIAlertView *tstAlert = [[UIAlertView alloc] initWithTitle:@"" message:@"Allowed only alphabets and numeric" delegate:self  cancelButtonTitle:nil otherButtonTitles:@"Ok",nil];
[tstAlert show];
NSString *absoluteUrl = [[request URL] absoluteString];
NSLog(@"absolute%@",absoluteUrl);
if ([absoluteUrl isEqualToString:@"didtap://button1"]) {
    NSLog(@"yes");

  TestViewController *testview=[[TestViewController alloc]initWithNibName:@"TestViewController" bundle:nil]; 
  [self.navigationController pushViewController:testview animated:YES];


        return NO;


  }
   NSLog(@"no");
  return YES;

  }
4

1 に答える 1

1

よし、あなたのコードをコピーしてテストしました。うまくいきました。おそらくどこかで間違っていたのでしょう... ARC を有効にして新しい「空のテンプレート」Xcode プロジェクトを作成し、以下を AppDelegat.m に貼り付けます。

//
//  AppDelegate.m
//  WebTest
//
//  Created by Elf Sundae on 8/5/13.
//  Copyright (c) 2013 www.0x123.com. All rights reserved.
//

#import "AppDelegate.h"

@interface SampleViewController : UITableViewController
@end

@implementation SampleViewController
- (void)viewDidLoad
{
        [super viewDidLoad];
        self.title = @"Sample Controller";
}
@end

#pragma mark - 
@interface WebViewController : UIViewController <UIWebViewDelegate>
@end

@implementation WebViewController
- (void)viewDidLoad
{
        [super viewDidLoad];
        UIWebView *web = [[UIWebView alloc] initWithFrame:self.view.bounds];
        web.delegate = self;
        [self.view addSubview:web];
        [web loadHTMLString:@"<a href='didTap://button1'><img src='cercle24px.png' /></a>" baseURL:nil];
}

- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request
 navigationType:(UIWebViewNavigationType)navigationType
{
        UIAlertView *alert = [[UIAlertView alloc]
                              initWithTitle:nil message:@"alert message" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
        [alert show];

        NSString *urlString = request.URL.absoluteString;
        if ([urlString caseInsensitiveCompare:@"didtap://button1"] == NSOrderedSame) {

#define __use_method   3 // it could be: 1/2/3

#if (__use_method == 1)
                SampleViewController *controller = [[SampleViewController alloc] init];
                [self.navigationController pushViewController:controller animated:YES];
#elif (__use_method == 2)

                /* method 2 */
                SampleViewController *controller = [[SampleViewController alloc] init];
                [self.navigationController performSelector:@selector(pushViewController:animated:)
                                                withObject:controller
                                                withObject:@(YES)];
#elif (__use_method == 3)
                /* method 3 */
                __unsafe_unretained __typeof(self) _self = self;
                double delayInSeconds = 0.01;
                dispatch_time_t popTime = dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delayInSeconds * NSEC_PER_SEC));
                dispatch_after(popTime, dispatch_get_main_queue(), ^(void){
                        SampleViewController *controller = [[SampleViewController alloc] init];
                        [_self.navigationController pushViewController:controller animated:YES];
                });
#endif

                return NO;
        }
        return YES;
}

@end

#pragma mark - 
@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
        self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
        [self.window makeKeyAndVisible];
        self.window.rootViewController = [[UINavigationController alloc] initWithRootViewController:
                                          [WebViewController new]];
        return YES;
}

@end
于 2013-08-05T15:33:21.787 に答える