devicekit / DeviceKit

DeviceKit is a value-type replacement of UIDevice.
MIT License
4.44k stars 433 forks source link

Feature/device cpu #321

Closed simonmitchell closed 1 year ago

simonmitchell commented 2 years ago

Adds CPU information to all devices, with Comparable cpu enum which allows for logic such as:

guard Device.current.cpu > Device.iPhone8Plus.cpu else {
      return 0.0089
}

return Device.current.cpu > Device.iPhoneX.cpu ? 0.0023 : 0.0047

as requested in #271!