0

やあみんな、プロジェクトのボタンを別のものにしようとしていますwebview url。私は iOS プログラミングは初めてですが、andriod プログラミングを使用しました。これは可能ですか?webviewサポートファイルフォルダーにある別のビューを作成しました。

ここに私のコードがあります

Viewcontroller.m

#import "ViewController.h"

@implementation ViewController

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Release any cached data, images, etc that aren't in use.
}

#pragma mark - View lifecycle

-(void)viewDidLoad
{
    NSString *urlString = @"http://www.athletic-profile.com/Application";

    //Create a URL object.
    NSURL *url = [NSURL URLWithString:urlString];

    //URL Requst Object
    NSURLRequest *webRequest = [NSURLRequest requestWithURL:url];

    //Load the request in the UIWebView.
    [webView loadRequest:webRequest];
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
}

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

- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
}

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
}

- (void)viewWillDisappear:(BOOL)animated
{
    [super viewWillDisappear:animated];
}

- (void)viewDidDisappear:(BOOL)animated
{
    [super viewDidDisappear:animated];
}

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
    return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}
@synthesize webView;        
@end
4

2 に答える 2

0

最初に、First Class で UIButton をドラッグ アンド ドロップし、その Button のアクションを作成してから、UIViewController のサブクラスである選択した URL を開く UIWebView の新しいクラスを作成し、.Xib または Storyboard にドラッグ アンド ドロップすることができます。そのボタンのアクションの最初のクラスでこのコードを記述した後、UIWebView をドロップし、UIWebView のアウトレットを作成します:-

- (IBAction *) firstButton:(id) sender
    {
           NSString *urlString = @"http://www.athletic-profile.com/Application";

           //Create a URL object.
           NSURL *url = [NSURL URLWithString:urlString];

           //URL Request Object
           NSURLRequest *webRequest = [NSURLRequest requestWithURL:url];

           //Load the request in the UIWebView.
           [webView loadRequest:webRequest];
    }
于 2013-11-07T12:04:26.900 に答える
0

ビューにボタンを追加してから、それに接続します。アクションメソッドでは、コードを書くだけです

-(IBAction*)yourButtonActionMethod:(id)sender
{

       [UIWebView *aWebView =[[UIWebView alloc] initWithFrame:CGRectMake(x,y,width,height)];
       aWebView.delegate=nil;
       NSString *urlString = @"http://www.athletic-profile.com/Application";

       //Create a URL object.
       NSURL *url = [NSURL URLWithString:urlString];

       //URL Requst Object
       NSURLRequest *webRequest = [NSURLRequest requestWithURL:url];

       //Load the request in the UIWebView.
       [aWebView loadRequest:webRequest];
       [self.view addSubView:aWebView];
}
于 2013-11-07T04:15:37.560 に答える