I am adding one Vserv Full Screen SDK to my IOS project but i face one problem
I am trying to add one Vserv Full Screen SDK in my ios application but I get following e开发者_JAVA技巧rror and warning
Error:-"_OBJC_CLASS_$_VservAdManager", referenced from: objc-class-ref-to-VservAdManager in VservFullScreenSDKUsageDemoViewController.old: symbol(s) not found
warning:- directory '/Users/macintoshuser/Desktop/VservFullScreenSDK_Iphone' following -L not found
Non-Apple frameworks aren’t supported on iOS. Is what you call a framework, in fact, a static library? If so, you may need to add -ObjC
and -all_load
to the Other Link Flags
build setting of the app target.
You need to set armv6 architecture to get this work.
Project-->Build Setting-->Architecture-->armv6
Note that you need to delete default setting for architecture and then type armv6 to add required one.
精彩评论