Add an optional delegate to get informed about new update being available

This commit is contained in:
Andreas Linde
2013-04-01 01:06:40 +02:00
committed by Stephan Diederich
parent c4921bb9de
commit b23e5134bc
5 changed files with 81 additions and 2 deletions

View File

@@ -37,6 +37,8 @@ typedef enum {
BITStoreUpdateCheckManually = 2
} BITStoreUpdateSetting;
@protocol BITStoreUpdateManagerDelegate;
/**
The store update manager module.
@@ -53,6 +55,16 @@ typedef enum {
@interface BITStoreUpdateManager : BITHockeyBaseManager <UIAlertViewDelegate>
///-----------------------------------------------------------------------------
/// @name Delegate
///-----------------------------------------------------------------------------
/**
Sets the optional `BITStoreUpdateManagerDelegate` delegate.
*/
@property (nonatomic, weak) id delegate;
///-----------------------------------------------------------------------------
/// @name Update Checking
///-----------------------------------------------------------------------------