AppVersionMonitor

码农软件 · 软件分类 · 其他(Others) · 2019-07-17 17:58:51

软件介绍

AppVersionMonitor 是一款为方便监控 iOS 应用程序版本的软件。

通过它你可以获得以往的版本和安装历史。

使用:

运行工程实例,克隆 repo,并且先从实例项目运行 pod install。

要求:

安装:

AppVersionMonitor 可在 CocoaPods 上使用。要安装 AppVersionMonitor 你只需要在 Podfile
中按照下面的操作即可:

pod "AppVersionMonitor"

使用:

安装:

// AppDelegatefunc applicationDidFinishLaunching(application: UIApplication) {

    AppVersionMonitor.sharedMonitor.startup()
}

获得 MarketingVersion(CFBundleShortVersionString):

let currentVersion: AppVersion = AppVersion.marketingVersion
let versionString: String = AppVersion.marketingVersion.versionString // "1.2.3"

获得安装过的版本:

let installedVersions: [AppVersion] = AppVersionMonitor.sharedMonitor.installedVersions

对比版本:

AppVersion.marketingVersion > AppVersion("1.2.3")
AppVersion("1.2.3") < AppVersion("3.2.1")
AppVersion("1.2.3") < "3.2.1"

更方便地检测自己当前的版本状况:

switch AppVersionMonitor.sharedMonitor.state {
case .Installed:
// Do something when app installed.
// Happy! 
// ex. Start tutorial.
case .NotChanged:
// Do something when version not changed.
// Peace 
// Nothing to do?
case .Upgraded(let previousVersion: AppVersion):
// Do something when version upgraded.
// Yeah! 
// ex. Migrate App Data.
case .Downgraded(let previousVersion: AppVersion):
// Do something when version downgraded. (Impossible normally)
// What happened? 
// ex. Purge App Data.
}

本文地址:https://www.codercto.com/soft/d/10348.html

Web Design in a Nutshell

Web Design in a Nutshell

Jennifer Niederst / O'Reilly Media, Inc. / 2006-02-21 / USD 34.99

Are you still designing web sites like it's 1999? If so, you're in for a surprise. Since the last edition of this book appeared five years ago, there has been a major climate change with regard to web......一起来看看 《Web Design in a Nutshell》 这本书的介绍吧!

在线进制转换器
在线进制转换器

各进制数互转换器

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具