2012-11-30 181 views
0

我有一個使用Phonegap構建的應用程序,所以我擁有全部HTML和Java腳本。
我可以使用兩行目標C代碼來檢查Facebook是否安裝在特定設備上,或不在我的應用程序中。
我想在我的應用程序中有一個Facebook分享按鈕,
通過點擊哪個將從我的應用程序打開Facebook應用程序,並將一些數據放在用戶的牆上,我可以通過這個應用程序調用。從iOS應用程序發佈到Facebook牆使用Phonegap構建

回答

0

爲什麼不嘗試FacebookConnect PhoneGap的插件,它適用於iOS和Android。

請在您的代碼下載sample應用程序並嘗試在下面的代碼片段:

<html> 
    <head> 
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 
     <meta name="format-detection" content="telephone=no" /> 
     <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" /> 
     <link rel="stylesheet" type="text/css" href="css/index.css" /> 
     <link rel="stylesheet" type="text/css" href="css/plugin.css" /> 
     <title>Hello World</title> 
    </head> 
    <body> 
     <div class="app"> 
      <h1>Apache Cordova</h1> 
      <div id="deviceready" class="blink"> 
       <p class="event listening">Connecting to Device</p> 
       <p class="event received">Device is Ready</p> 
      </div> 
      <div id="plugindemo"> 
       <h3>FacebookConnect Plugin</h3> 
       <a href="#" class="btn large" onclick="plugin.login();">login()</a> 
       <a href="#" class="btn large" onclick="plugin.requestWithGraphPath();">requestWithGraphPath()</a> 
       <a href="#" class="btn large" onclick="plugin.dialog();">dialog()</a> 
       <a href="#" class="btn large" onclick="plugin.logout();">logout()</a> 
      </div> 
     </div> 
     <script type="text/javascript" src="cordova-2.2.0.js"></script> 
     <script type="text/javascript" src="js/index.js"></script> 
     <script type="text/javascript" src="js/plugin.js"></script> 
     <script type="text/javascript" src="js/FacebookConnect.js"></script> 
     <script type="text/javascript"> 
      app.initialize(); 
     </script> 
    </body> 
</html> 
相關問題