Update documentation that only BITHockeyManagerDelegate needs to be added as a protocol, since that now implements all other delegates

This commit is contained in:
Andreas Linde 2013-07-29 14:09:49 +02:00
parent 20c055eb48
commit f091cb6c01
2 changed files with 4 additions and 4 deletions

View File

@ -116,9 +116,9 @@ If you need support for iOS 3.x, please check out [HockeyKit](http://support.hoc
#import "HockeySDK.h"
3. Let the AppDelegate implement the protocols `BITHockeyManagerDelegate`, `BITUpdateManagerDelegate` and `BITCrashManagerDelegate`:
3. Let the AppDelegate implement the protocols `BITHockeyManagerDelegate`:
@interface AppDelegate(HockeyProtocols) <BITHockeyManagerDelegate, BITUpdateManagerDelegate, BITCrashManagerDelegate> {}
@interface AppDelegate(HockeyProtocols) <BITHockeyManagerDelegate> {}
@end
4. Search for the method `application:didFinishLaunchingWithOptions:`

View File

@ -86,9 +86,9 @@ If you need support for iOS 3.x, please check out [HockeyKit](http://support.hoc
#import <HockeySDK/HockeySDK.h>
3. Let the AppDelegate implement the protocols `BITHockeyManagerDelegate`, `BITUpdateManagerDelegate` and `BITCrashManagerDelegate`:
3. Let the AppDelegate implement the protocols `BITHockeyManagerDelegate`:
@interface AppDelegate(HockeyProtocols) <BITHockeyManagerDelegate, BITUpdateManagerDelegate, BITCrashManagerDelegate> {}
@interface AppDelegate(HockeyProtocols) <BITHockeyManagerDelegate> {}
@end
4. Search for the method `application:didFinishLaunchingWithOptions:`