Various documentation fixes and updates

This commit is contained in:
Andreas Linde
2013-09-12 12:21:12 +02:00
parent 67a4e1b6f9
commit d7ae69860d
20 changed files with 314 additions and 136 deletions

View File

@@ -34,13 +34,31 @@
#import "BITStoreButton.h"
typedef enum {
/**
* Button states
*/
typedef NS_ENUM(NSUInteger, AppStoreButtonState) {
/**
* Offline
*/
AppStoreButtonStateOffline,
/**
* Check
*/
AppStoreButtonStateCheck,
/**
* Searching
*/
AppStoreButtonStateSearching,
/**
* Update
*/
AppStoreButtonStateUpdate,
/**
* Installing
*/
AppStoreButtonStateInstalling
} AppStoreButtonState;
};
@class BITUpdateManager;