问题
I am creating a private App in Xcode 7.3 ( iOS 9.3) , where I am going to utilize the WiFi Info.
I have Followed this link , Bluetooth Private Framework works fine However:
I am trying to implement Private Framework "MobileWIFI.Framework
" in XCode 7.3 , but it gives me this error:
"_WiFiManagerClientCopyNetworks", referenced from: -
[AppDelegate application:didFinishLaunchingWithOptions:] in
AppDelegate.o "_WiFiManagerClientCreate", referenced from: -[AppDelegate application:didFinishLaunchingWithOptions:] in AppDelegate.old: symbol(s) not found for architecture x86_64 clang: error: linker command failed with exit code 1 (use -v to see invocation)
I tried with using mobilewifi.framework
files of iOS version 9.3, 8.1, 7
It gives same error.
I think the headers are not matching the .tbd
file of Framework
来源:https://stackoverflow.com/questions/39771212/implement-mobilewifi-private-framework-in-xcode-7-3