NEHotspotHelper.register not received call back iOS11

You should check the result of the register() function. If it’s returning false, something is probably not configured correctly. See the full list of configuration instructions below. Also in the screenshot you provided, you have the entitlements enabled for Hotspot Configuration, but the API you’re calling is for Hotspot Helper. The two features require very … Read more

Location access – App is not asking for user permission to access location – iOS 11

I have gone through the Apple documentation and found the solution for this question. Apple has changed few guidelines to get user location. Here is the Video Link: Apple- What’s New in Location Technologies Full code for location access in Swift & Objective-C both Solution: Now we need to add three Authentication Key into Plist: … Read more

iOS 11 UIBarButtonItem images not sizing

BarButtonItem (iOS11\xCode9) uses autolayout instead of frames. Try this (Swift): if #available(iOS 9.0, *) { cButton.widthAnchor.constraint(equalToConstant: customViewButton.width).isActive = true cButton.heightAnchor.constraint(equalToConstant: customViewButton.height).isActive = true } Objective C if (@available(iOS 9, *)) { [cButton.widthAnchor constraintEqualToConstant: standardButtonSize.width].active = YES; [cButton.heightAnchor constraintEqualToConstant: standardButtonSize.height].active = YES; }

iOS11 swift silent push (background fetch, didReceiveRemoteNotification) is not working anymore

Final UPDATE 2017-10-31 Apple just had its official (Halloween) release of iOS 11.1 UPDATE 2017-10-09 Apple released iOS11.1 beta 2 today. Again they mentioned in their Release Notes the following note: Notifications Resolved Issues Silent push notifications are processed more frequently. (33278611) I’m going to test again this beta 2 version and update this answer … Read more