Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Before starting, remove the framework and all files you have added while trying to make it work.</p> <p>Then, you have to add the frameworks in the <code>Build Phases</code> of your target. Then go into <code>Link Binary With Libraries</code> and select your framework from there. </p> <p>This should do it. Your headers should be available as auto-completion after each <code>#import directive.</code> If it does not work (it sometimes happens), there are additional steps I can provide to you.</p> <p><strong>Additional steps:</strong></p> <p>Go to your project settings, in the build settings:</p> <ul> <li>Complete the <code>Framework Search Paths</code> with the path of your framework</li> <li>Do the same with <code>User Header Search Path</code></li> </ul> <p>Then, it should work. If it does not, you will need to add the full path of your header in the <code>#import</code> directive. Example:</p> <p><code>#import "/path/to/my/header.h"</code></p> <hr> <p>Apple's documentation <a href="https://developer.apple.com/library/ios/#recipes/xcode_help-project_editor/Articles/AddingaLibrarytoaTarget.html%23//apple_ref/doc/uid/TP40010155-CH17-SW1" rel="noreferrer">available here </a>states:</p> <ol> <li>In the project navigator, select your project </li> <li>Select your target</li> <li>Select the 'Build Phases' tab</li> <li>Open 'Link Binaries With Libraries' expander</li> <li>Click the '+' button</li> <li>Select your framework</li> <li>(optional) Drag and drop the added framework to the 'Frameworks' group</li> </ol>
    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