2012-02-15 26 views
0

我試圖看看手機的差距後,下載它的iOS瞭解它是如何工作的,但我幾乎找不到任何.m文件 - 例如有PGViewController.h但沒有PGViewController.m,並尋找工作區內PGViewController.h中的任何方法只顯示搜索結果中的PGViewController.h,沒有.m文件,並且沒有可以在任何地方找到的實現。Phone Gap for iOS中的源文件在哪裏?

實際執行哪裏?

我特別想看看shouldStartLoadWithRequest實施:,但都沒有這是在AppDelegate.m

- (BOOL) webView:(UIWebView*)theWebView shouldStartLoadWithRequest:(NSURLRequest*)request navigationType:(UIWebViewNavigationType)navigationType 
{ 
    return [self.viewController webView:theWebView shouldStartLoadWithRequest:request navigationType:navigationType]; 
} 

哪裏shouldStartLoadWithRequest實施的實際肉 - 爲什麼它不會出現在任何我能看到的Xcode項目中?

回答

相關問題