create a UIWebView and load a website programmatically

前端 未结 3 650
执笔经年
执笔经年 2020-12-30 02:35

The following is my code. I simply want to load a website page and put a back button on screen. Don\'t know why nothing shows on the screen.

in .h

#i         


        
3条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-30 03:22

    First Initialize Web view .Write The Below Code In Between [Super ViewDidLoad]; and Nsstring Inisilization.

    myWebView=[[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 320, 460)];
    myWebView.delegate=self;
    [self.view addSubview:myWebView]
    

    Then Load Request Your Code Will Work.

提交回复
热议问题