IQAppStatus.h 555 B

123456789101112131415161718192021
  1. //
  2. // IQAppStatus.h
  3. // ConnectIQ
  4. //
  5. // Copyright (c) 2014 Garmin. All rights reserved.
  6. //
  7. #import <Foundation/Foundation.h>
  8. /// @brief Represents the current status of an app on a Garmin device.
  9. @interface IQAppStatus : NSObject
  10. /// @brief YES if the app is installed on the device, NO if it isn't.
  11. @property (nonatomic, readonly) BOOL isInstalled;
  12. /// @brief The version of the app that is currently installed on the device. If
  13. /// the app is not installed, this value is unused.
  14. @property (nonatomic, readonly) uint16_t version;
  15. @end