我创建了一个简单的应用程序,它有两个视图,主视图或第一个视图,其中包含一个简单地调用此代码的按钮
[UIView transitionFromView:self.view toView:self.secondView duration:1.0 options:UIViewAnimationOptionTransitionCrossDissolve completion:^(BOOL finished) {
[self.webView setDelegate:self];
NSURLRequest *request = [[NSURLRequest alloc]initWithURL:[NSURL URLWithString:@"http://www.wowza.com/_h264/BigBuckBunny_115k.mov"]];
//@"http://www.thumbafon.com/code_examples/video/segment_example/prog_index.m3u8"]];
[[self webView]loadRequest:request];
}];
一切正常,但随着视频开始播放,我在控制台中得到了这个
<MPSwipableView: 0x1e043790; frame = (0 0; 320 568); autoresize = W+H; gestureRecognizers = <NSArray: 0x1e043d30>; layer = <CALayer: 0x1e043850>>'s window is not equal to <ViewController: 0x1e017d80>'s view's window!
这意味着什么?为什么我得到这个?以及如何解决?