2014-09-27 99 views
1

我在我的應用程序中使用Google+原生共享。但它不工作,我試了下面的代碼。Google+這個類別不是關鍵值編碼兼容的關鍵showCircleCount

if ([[GPPSignIn sharedInstance] authentication]) { 

     id<GPPShareBuilder> shareBuilder = [[GPPShare sharedInstance] nativeShareDialog]; 
     [shareBuilder setPrefillText:@"karthi!"]; 
     [(id<GPPNativeShareBuilder>)shareBuilder attachImage:[UIImage imageNamed:@"off-1.png"]]; 
     [shareBuilder open]; 
    } 
    else 
    { 
     self.signInButton.hidden = NO; 

    } 

這裏我得到的例外是這樣,在Interface Builder文件

未知類GPPNativeShareACLViewController。

終止應用程序由於未捕獲的異常「NSUnknownKeyException」,原因:「[setValue方法:forUndefinedKey:]:這個類不是密鑰值編碼兼容的關鍵showCircleCount」

在此先感謝...

+0

可能的重複[這是什麼意思? 「'NSUnknownKeyException',原因:...這個類不是密鑰X的編碼兼容鍵值」](http://stackoverflow.com/questions/3088059/what-does-this-mean-nsunknownkeyexception-reason-該級 - 是 - 不鍵) – jtbandes 2015-08-03 06:32:59

回答

0

查一下你的項目,這就有可能設置不正確的構建設置你的頭路徑。您可以刪除sdk並再次添加,以便項目再次採用其路徑

相關問題