关于 dyld: Symbol not found: _OBJC_CLASS_$_UIPopoverController 错误

 

 

There are 2 workarounds,

  1. Replace all appearance of UIPopoverController in a message (e.g. [UIPopoverController alloc]) with NSClassFromString(@"UIPopoverController")or
  2. Make UIKit weakly linked. (右键点击target的get info, 把UIKIt的required改成weak)

你可能感兴趣的:(关于 dyld: Symbol not found: _OBJC_CLASS_$_UIPopoverController 错误)