comment private header

This commit is contained in:
Stephan Diederich 2013-07-27 14:43:25 +02:00
parent 9acdf02a0e
commit d39c39feb7

View File

@ -20,20 +20,38 @@
- (void)startManager;
- (void)reportError:(NSError *)error;
- (NSString *)encodedAppIdentifier;
/** the value this object was initialized with */
- (BOOL)isAppStoreEnvironment;
/** by default, just logs the message
can be overriden by subclasses to do their own error handling,
e.g. to show UI
*/
- (void)reportError:(NSError *)error;
/** url encoded version of the appIdentifier
where appIdentifier is either the value this object was initialized with,
or the main bundles CFBundleIdentifier if appIdentifier ist nil
*/
- (NSString *)encodedAppIdentifier;
/** device / application helpers */
- (NSString *)getDevicePlatform;
- (NSString *)executableUUID;
/** UI helpers */
- (UIWindow *)findVisibleWindow;
- (void)showView:(UIViewController *)viewController;
/** Network helpers */
- (NSData *)appendPostValue:(NSString *)value forKey:(NSString *)key;
/** Date helpers */
- (NSDate *)parseRFC3339Date:(NSString *)dateString;
/** keychain helpers */
- (BOOL)addStringValueToKeychain:(NSString *)stringValue forKey:(NSString *)key;
- (NSString *)stringValueFromKeychainForKey:(NSString *)key;
- (BOOL)removeKeyFromKeychain:(NSString *)key;