Link to home
Start Free TrialLog in
Avatar of sniger
sniger

asked on

ios - Undefined symbols for architecture x86_64: "_UTTypeCopyPreferredTagWithClass", referenced from:

when trying to compile an app which is basically doing nothing just importing Parse framework and its dependencies, I am getting an error:
Undefined symbols for architecture x86_64:
  "_UTTypeCopyPreferredTagWithClass", referenced from:
      -[PFFile getMimeType] in Parse(PFFile.o)
  "_UTTypeCreatePreferredIdentifierForTag", referenced from:
      -[PFFile getMimeType] in Parse(PFFile.o)
  "_kUTTagClassFilenameExtension", referenced from:
      -[PFFile getMimeType] in Parse(PFFile.o)
  "_kUTTagClassMIMEType", referenced from:
      -[PFFile getMimeType] in Parse(PFFile.o)
ld: symbol(s) not found for architecture x86_64

Open in new window




I added all the necessary libraries (MobileCoreServices etc)
Avatar of KRUNAL TAILOR
KRUNAL TAILOR

Hi sniger.

Add following frameworks in your project:

SystemConfiguration.framework

Thanks & Regards,
Krunal T. Tailor
Avatar of sniger

ASKER

Hi Krunak,

It is alreay there
Hi  sniger,

As you are trying to add Parse framework. So please verify this below frameworks are added once.

AudioToolbox.framework
CFNetwork.framework
CoreGraphics.framework
CoreLocation.framework
libz.1.1.3.dylib
MobileCoreServices.framework
QuartzCore.framework
Security.framework
StoreKit.framework
SystemConfiguration.framework


Also, Make sure "Framework Search Paths" for Parse added in BuildSettings.

Go to Project > Build Settings > Framework Search Paths
Add path for "Parse.framework"

hope this will help you.

Thanks & Regards,
Krunal T. Tailor
ASKER CERTIFIED SOLUTION
Avatar of KRUNAL TAILOR
KRUNAL TAILOR

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial