In my app there is some logic for frameless devices (iPhoneX, Xs Xs max, Xr). Currently it works base on the model of the devices, so, I detect the model by DeviceKit framework.
But I want to extend this logic to future frameless devices. Probably in one year we will have some extra frameless devices. So, how can I detect if device is frameless or not? It should cover all current frameless devices and future one.
We can not rely on faceID, safeAreaInset, screen height or size. So, then what?
When Share My Location is turned on, you can share your location with friends, family, and contacts from your iPhone, iPad, or iPod touch with Find My. You can also share your location in the Find People app on watchOS 6 or later with Apple Watch models that have GPS and cellular and are paired with your iPhone.
You could "fitler" for the top notch, something like:
var hasTopNotch: Bool { if #available(iOS 11.0, tvOS 11.0, *) { return UIApplication.shared.delegate?.window??.safeAreaInsets.top ?? 0 > 20 } return false }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With