UIWebView 在从另一个 ViewController 调用的方法中为 null
Posted
技术标签:
【中文标题】UIWebView 在从另一个 ViewController 调用的方法中为 null【英文标题】:UIWebView is null in method called from another ViewController 【发布时间】:2013-11-19 12:06:40 【问题描述】:我有两个视图控制器。 ViewController1
和 ViewController2
。
在viewController1
中,我创建了一个名为webView
的UIWebView
。
这是viewController1.h
:
#import "viewController2.h"
@class viewController2
@interface viewController1 : UIViewController <UIWebViewDelegate>
...
@property (nonatomic, strong)UIWebView *webView;
- (void)goToPerc:(float)perc;
这是viewController1.m
:
- (void)viewDidLoad
...
webView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height)];
webView.delegate = self;
webView.scrollView.delegate = self;
[self.view addSubview:webView];
...
- (void)goToPerc:(float)perc
CGPoint scrollToPoint = CGPointMake(0, (int)(self.webView.scrollView.contentSize.height * (perc / 100)));
NSLog(@"%@", webView);
[webView.scrollView setContentOffset:scrollToPoint animated:YES];
这是viewController2.h
:
#import <UIKit/UIKit.h>
#import "viewController1.h"
@interface viewController2 : UIViewController
...
这是viewController2.m
:
...
- (void)blaBla
viewController1 *vc1 = [[viewController1 alloc] init];
float scrollToPerc = 50.0;
[vc1 goToPerc:scrollToPerc];
NSLog(@"%@", vc1); // returns viewController1 in log
(void)goToPerc:(float)perc
中的 NSLog(@"%@", webView);
返回 null。而且滚动显然不起作用。为什么? viewController1
中的所有其他函数在 webView
和 viewDidLoad
上不返回 null viewController1
被调用,所以 webView
确实存在!
我也试过self.webView
,也没有成功。
【问题讨论】:
去协议和委托。搜索、学习和实施。 你有一个强大的工具叫做断点。在所有方法中彻底使用它,并检查调用了哪个方法以及出现了什么问题。 我认为 viewdidload 在你第一次显示你的视图控制器视图之前不会被调用。 viewController1 中的 viewDidLoad 在我调用 [vc1 goToPerc:scrollToPerc] 之前已经被调用;在 viewController2 中。 你应该阅读一些关于视图生命周期的文章。 【参考方案1】:我认为你正在创建一个新的 viewcontroller,insead 访问前一个
viewController1 *vc1 = [[viewController1 alloc] init];
float scrollToPerc = 50.0;
[vc1 goToPerc:scrollToPerc];
NSLog(@"%@", vc1);
你可以试试
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
UIViewController *vc1 = [storyboard instantiateViewControllerWithIdentifier:@"YourSecondviewcontrollerIdentifier"];
float scrollToPerc = 50.0;
[vc1 goToPerc:scrollToPerc];
NSLog(@"%@", vc1);
【讨论】:
这导致了解决方案。对我来说,解决方案是通过通知调用已经实例化的 VC。 我很高兴听到这个消息:D【参考方案2】:因为您没有在导航中推送视图控制器,以便视图可以加载最新的视图控制器。您的 viewController 对象已创建,这就是您能够访问其公共属性或方法的原因。
所以你可以在你的 blabla 方法中使用这个方法来创建你的 viewController 的对象:
viewController1ViewController *vc1 = [[viewController1ViewController alloc] initWithNibName:@"viewController1ViewController" bundle:nil];
和
然后你可以在这个方法中写下你在 viewDidLoad 中写的所有东西
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self)
// Custom initialization
return self;
或者,如果您想展示您的 viewController,那么您可以使用控制器的 navigationController 属性的 pushViewController,如下所示:
[self.navigationController pushViewController:vc1 animated:NO];
这将调用你的viewDidLoad
:
我想这应该可以消除你的疑问。
【讨论】:
【参考方案3】:因为您在代码中创建 webView,所以它仅在 viewDidLoad 期间创建。
当创建 viewController1 时,view
在尝试访问视图之前不会被加载,所以viewDidLoad
不会被调用,所以你的 webView 也不会被创建。
您有许多不同的解决方案:
a) 直接在 viewController1.xib 文件中添加 webView(并使其成为 IBOutlet)
b) 在创建 viewController1 后立即访问view
(即:[vc1 view];
)
c) 仅在推送/呈现 viewController 后调用 goToPerc:
【讨论】:
以上是关于UIWebView 在从另一个 ViewController 调用的方法中为 null的主要内容,如果未能解决你的问题,请参考以下文章