Documentation updates

This commit is contained in:
Andreas Linde 2012-10-31 08:57:28 +01:00
parent a839b16313
commit 460e6eef46
3 changed files with 7 additions and 1 deletions

View File

@ -66,6 +66,8 @@
- NSURL
These are automatically concatenated to one text string.
@param items Array of data objects to prefill the feedback text message.
*/
- (void)prepareWithItems:(NSArray *)items;

View File

@ -189,7 +189,7 @@ typedef enum {
@[@"Adding some example default text and also adding a link.",
[NSURL URLWithString:@"http://hockeayyp.net/"]]];
UINavigationController *navController = [[[UINavigationController alloc] initWithRootViewController:feedbackCompose] autorelease];
UINavigationController *navController = [[UINavigationController alloc] initWithRootViewController:feedbackCompose];
navController.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentViewController:navController animated:YES completion:nil];

View File

@ -10,6 +10,10 @@
#import <UIKit/UIKit.h>
/**
The internal superclass for all component managers
*/
@interface BITHockeyBaseManager : NSObject