1

我有这个代码但没有加载这个页面我不知道会发生什么

在 iPad 中不起作用,仅在 webViewDidFinishLoad 完成时显示空白屏幕。

iPhone工作正常有什么问题吗?

因为只有这个链接不起作用https://www.facebook.com/peopemexico

这是我的代码:

.h

@interface WebRedesIpad : UIViewController <UIWebViewDelegate>


@property (strong, nonatomic) IBOutlet UIWebView *propNavegador;



.m

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

    [_propNavegador loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"https://www.facebook.com/peopemexico"]]];

    }


    - (void)webViewDidFinishLoad:(UIWebView *)webView
    {
        [activityIndicator stopAnimating];

    }
4

2 回答 2

0

If it's working in iPhone and not in iPad then you must have not linked variable propNavegador to iPad storyboard/ NIB files.

You must have attached to only iPhone storyboard/ NIB files.

Please check and let me know.

于 2013-10-25T21:21:57.510 回答
0

你有没有在同一个类的.h文件中写过UIWebViewDelagte?

于 2013-10-25T19:44:32.193 回答