Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to use a library in my project called WSAssetPickerController. It's a picker controller for iOS that enables you to select multiple pictures. I have followed the instructions strictly to include it in my project but I am getting the following error:

ld: warning: ignoring file /Users/davdon42/Documents/Apps/Photomosaic/Photo Mosaic/libWSAssetPicker.a, missing required architecture i386 in file /Users/davdon42/Documents/Apps/Photomosaic/Photo Mosaic/libWSAssetPicker.a (2 slices)
Undefined symbols for architecture i386:
  "_OBJC_CLASS_$_WSAssetPickerController", referenced from:
      objc-class-ref in ImportImagesViewController.o
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)

any ideas?

I think it may be something to do with versions of xcode and the iphone sdk. I'm using Xcode Version 4.5.1 and iOS SDK 6.0 targeting iOS 5.1.

Thanks

share|improve this question
Have you double checked that you've added all required frameworks to the project? – 0x7fffffff Oct 25 '12 at 22:40
yes, i have added all required frameworks – user1775671 Oct 27 '12 at 4:46

1 Answer

user1775671,

The error is a result of the library not being compiled for the iOS simulator. I updated the project to compile the library for both the simulator and devices. The README is also updated with new instructions as follows:

  1. Open the demo project
  2. Select the WSAssetPickerCombined scheme
  3. In the menu bar choose Product > Build
  4. Copy the generated WSAssetPicker directory (found in the builds folder in the project directory) into your project.
  5. Make sure that libWSAssetPicker-Combined.a has been added to your targets Build Phases

You could also get the code via CocoaPods which is a pretty handy way to manage dependencies for your projects.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.