Improve documentation

declare the AppDelegate interface as a HockeyProtocols category, to make it clear this does not need to be done in the header file.
This commit is contained in:
Andreas Linde 2012-11-27 23:02:25 +01:00
parent c754c9f68e
commit 71c43cd690
2 changed files with 2 additions and 2 deletions

View File

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

View File

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