NEHotspotHelper annotations not appearing

I have implemented the below code for authenticating and annotating the Wifi hotspot with “Connect to MyWifi” for SSID “TP-LINK” from within the app, It works fine. NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:@”Connect to MyWifi”, kNEHotspotHelperOptionDisplayName, nil]; dispatch_queue_t queue = dispatch_queue_create(“com.myapp.ex”, 0); BOOL isAvailable = [NEHotspotHelper registerWithOptions:options queue:queue handler: ^(NEHotspotHelperCommand * cmd) { NSMutableArray *hotspotList = … Read more