Questions tagged [iphone-xr]
18 questions
0
votes
0 answers
Metal performance on iPhone XR
I have a kernel Metal function which basically looks like this:
struct Matrix {
half arr[562500]; //enough to store 750x750 matrix
};
struct Output {
half arr[12288];
};
kernel void compute_features(device Output& buffer [[ buffer(0) ]],
…

Eugene Alexeev
- 1,152
- 12
- 32
0
votes
3 answers
XR status bar text remains black, but not iPhone 8 or iPad
Using the techniques out there in googleland, I have set my iOS statusbar text to white. This works fine except for iPhone XR, which sets the text black.
The techniques I find for dealing with this are all Swift and Objective C related. What is the…

John Mc
- 212
- 2
- 16
0
votes
1 answer
iPhone XR iOS 12 UITabBarItem title overlap on top of the picture
The issue only happens on the iPhone XR, it works well on all other iPhone devices.
And I used the original UITabBar component, not the customized one
tabBarItem.titlePositionAdjustment.vertical = -10.0
tabBarItem.selectedImage = UIImage(named:…

Jin
- 665
- 1
- 7
- 15