这是我内部应用所需要的。我想在ios设备上切换wifi。任何框架都可用。 我尝试了下面的代码,但它没有给我任何帮助。这不会改变我的wifi设置。
{
Class BluetoothManager = objc_getClass("BluetoothManager");
id btCont = [BluetoothManager sharedInstance];
[self performSelector:@selector(toggle:) withObject:btCont afterDelay:0.1f] ;
}
- (void)toggle:(id)btCont
{
BOOL currentState = [btCont enabled] ;
[btCont setEnabled:!currentState] ;
[btCont setPowered:!currentState] ;
exit( EXIT_SUCCESS ) ;
}
答案 0 :(得分:3)
你无法做到。 iOS限制了第三方应用程序可以与底层硬件交互的程度。使用公共SDK编写的所有应用程序都是沙箱。
正如7KV7在their answer here中所说:
他们只能访问属性和数据 Apple认为在该沙箱中使用是可行的。我担心Wi-Fi 不在列表中。
答案 1 :(得分:3)
notify_post("com.yourcompany.yourapp.yournotification");
#import <objc/runtime.h>
#import <SpringBoard/SBWiFiManager.h>
HOOK(SpringBoard, applicationDidFinishLaunching$, void, id app) {
//Listen for events via DARWIN NOTIFICATION CENTER
CFNotificationCenterAddObserver(CFNotificationCenterGetDarwinNotifyCenter(), NULL,
&NotificationReceivedCallback, CFSTR("com.yourcompany.yourapp.yournotification"), NULL,
CFNotificationSuspensionBehaviorCoalesce);
}
//THIS IS WHERE THE MAGIC HAPPENS
static void NotificationReceivedCallback(CFNotificationCenterRef center,
void *observer, CFStringRef name,
const void *object, CFDictionaryRef
userInfo)
{
[[objc_getClass("SBWiFiManager") sharedInstance] setWiFiEnabled:NO];
}
如果您在使用Hook方法时遇到任何错误,可以参考此link它演示如何挂接SpringBoard中的init方法,以便在启动手机时显示警告消息。
由于使用了私有api,因此无法将此用于appstore应用程序。
希望这有帮助。