Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Okay, you still haven't set everything up correctly, so I'm just going to walk you through the process quickly. </p> <p>The first you need to do is go to your project, and select your app's target >> Build Settings and search for "Other Linker Flags". There you will add" -lsqlite3.0", like the picture shows below.<img src="https://i.stack.imgur.com/D88Lm.png" alt="enter image description here"></p> <p>Next, you need to navigate back to the Summary tab, and scroll down to "Linked Frameworks and Libraries", and add the Social, Accounts, and AdSupport framework. Also, change them from required to optional for older devices. Also add the FacebookSDK framework. You should have something like this:<img src="https://i.stack.imgur.com/ecfoG.png" alt="enter image description here"></p> <p>Lastly, you need to do what seems to be giving you the hardest time. Navigate to your .plist file in your project navigator. In there, you need to modify your plist to reflect something like this:<img src="https://i.stack.imgur.com/TqB66.png" alt="enter image description here"></p> <p>Be sure that you're being VERY precise with capitalizations and such. I say that because I notice that you put "id" instead of "ID" in your question.</p> <p>The last thing you have to do is simply import the FacebookSDK framework into your file when you are ready to use it.</p> <pre><code>#import &lt;FacebookSDK/FacebookSDK.h&gt; </code></pre> <p>One last extra tip. I always add a bundle called "FacebookSDKResources.bundle" because I find that I often times end up using it. The bundle can be found in FacebookSDK >> FacebookSDK.framework >> Resources. Add that bundle to your project the same way you added the FacebookSDK.faramework file itself, and you should be all ready to go!</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload