2015-09-28 59 views
0

我想在部署目標10.10的XCode 7中從Google-api-objectivec-client-read-only生成GTL項目。我在GTMOAuth2WindowController.m文件中看到以下構建錯誤GTX框架與XCode 7和部署目標的構建錯誤10.10

將GTMOAuth2WindowController發送到不兼容類型的參數id @ line [self.webView setResourceLoadDelegate:self];

and 將GTMOAuth2WindowController發送到不兼容類型的參數id @ [self.webView setPolicyDelegate:self];

以下是該方法塊

-

(void)awakeFromNib { 
    // load the requested initial sign-in page 
    [self.webView setResourceLoadDelegate:self]; 
    [self.webView setPolicyDelegate:self]; 

    // the app may prefer some html other than blank white to be displayed 
    // before the sign-in web page loads 
    NSString *html = self.initialHTMLString; 
    if ([html length] > 0) { 
    [[self.webView mainFrame] loadHTMLString:html baseURL:nil]; 
    } 

任何幫助將大大讚賞。

謝謝!

回答