我试图像这样提出$(document).ready(function() {
$(".proDocs").click(function(e) {
e.stopPropagation();
$(this).children("ul").toggleClass("hidden");
});
});
:
UIViewController
VC显示一秒钟然后应用程序崩溃,Xcode断点位于另一个类的非相关行(let autocompleteVC = GMSAutocompleteViewController()
autocompleteVC.delegate = self
self.present(autocompleteVC, animated: true, completion: nil)
)上,如果删除此行,则会出现self.buttonsScrollView!.frame.origin.y = (self.window?.frame.size.height)! - self.bounds.size.height
错误。< / p>
*问题不在于fatal error: unexpectedly found nil while unwrapping an Optional value
的意思 - 问题是当我使用fatal error: unexpectedly found nil while unwrapping an Optional value
方法时它崩溃的原因。
知道为什么会这样吗?
谢谢!