UIDeviceHardware
UIDeviceHardware copied to clipboard
Category to check hardware version that's running iOS
Does UIDeviceHardware only work for real devices? On iPhone X simulator, `NSString *platformString = [UIDeviceHardware platformString];` returns "iPhone"
Consider adding these, because more and more devices can have apps like the Apple TV, Watch, and possibly HomePod and beyond: `if ([platform isEqualToString:@"iPhone3,2"]) return @"iPhone 4 (GSM, Rev A)";`...
Hello, this looks really usefull, thanks for writing it. Is there any way that I can learn how to use it in web based applications? I have an idea and...