我正在尝试查看手机差距后下载iOS以了解它是如何工作的,但我几乎找不到任何.m文件 - 例如PGViewController.h但没有PGViewController.m,并且搜索对于工作区内PGViewController.h中的任何方法,只在搜索结果中显示PGViewController.h,没有.m文件,也没有我可以在任何地方找到的实现。
实际实施在哪里?
特别是我想看一下shouldStartLoadWithRequest:的实现,但是AppDelegate.m中的所有内容都是这样的
- (BOOL) webView:(UIWebView*)theWebView shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType
{
return [self.viewController webView:theWebView shouldStartLoadWithRequest:request navigationType:navigationType];
}
执行shouldStartLoadWithRequest的实际内容在哪里 - 为什么它不会出现在Xcode项目中我能看到的任何地方?
答案 0 :(得分:0)