美文网首页
WWDC - Improving Battery Life an

WWDC - Improving Battery Life an

作者: 穷小子 | 来源:发表于2020-10-19 12:27 被阅读0次

每一开发阶段的Metric工具

截屏2020-10-19 上午11.00.43.png
  • XCTest Metrics
    Performance of measure blocks

  • MetricKit
    Framework for battery and performance metrics collection

  • Xcode Metrics Organizer
    Aggregated battery, performance, and I/O metrics in Xcode

MetricKit 集成

Step1

声明遵守MXMetricManagerSubscriber协议

@protocol MXMetricManagerSubscriber

Step2

[MXMetricManager sharedManager]注册Subscriber

[[MXMetricManager sharedManager] addSubscriber:self];

Step3

实现didReceiveMetricPayloads:方法,并处理数据

- (void)didReceiveMetricPayloads:(NSArray<MXMetricPayload *> * _Nonnull)payloads{
}

其他

APL平均像素亮度

  • Color of UI on OLED displays impacts energy
  • Lighter colors = more energy (high APL)
  • Darker colors = less energy (low APL)

相关文章

网友评论

      本文标题:WWDC - Improving Battery Life an

      本文链接:https://www.haomeiwen.com/subject/viekmktx.html