2013-03-18 117 views
1

当我尝试运行我的的iOS 4.3模拟器项目,它抛出我以下异常:使dyld:懒符号绑定失败:未找到符号:

dyld: lazy symbol binding failed: Symbol not found: _CGPathCreateWithEllipseInRect 
    Referenced from: /Users/macintosh/Library/Application Support/iPhone Simulator/4.3.2/Applications/FCBB8196-9F46-4F4E-BFB3-C28D0AAEC74F/Tick.app/Tick 
    Expected in: /Users/macintosh/Desktop/Xcode/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics 

dyld: Symbol not found: _CGPathCreateWithEllipseInRect 
    Referenced from: /Users/macintosh/Library/Application Support/iPhone Simulator/4.3.2/Applications/FCBB8196-9F46-4F4E-BFB3-C28D0AAEC74F/Tick.app/Tick 
    Expected in: /Users/macintosh/Desktop/Xcode/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator4.3.sdk/System/Library/Frameworks/CoreGraphics.framework/CoreGraphics 

我已经设定目标到iOS 4.3。我的项目在ios 5和6上运行良好。我认为某些库缺失或在旧版本中不受支持。我该怎么做才能解决这个问题?任何帮助将不胜感激。谢谢。

回答

0

CGPathCreateWithEllipseInRect在iOS 4.3上不可用。这是iOS 5.0中的新功能。

+0

谢谢帮助:) – NightFury 2013-03-25 06:53:30

相关问题