Add a UIActivity subclass and the option to invoke compose view from anywhere modally

This commit is contained in:
Andreas Linde
2012-10-16 01:50:21 +02:00
parent 795381d72f
commit ca08b982c3
12 changed files with 247 additions and 30 deletions

View File

@@ -0,0 +1,31 @@
//
// BITFeedbackComposeViewControllerDelegate.h
// HockeySDK
//
// Created by Andreas Linde on 15.10.12.
//
//
#import <Foundation/Foundation.h>
@class BITFeedbackComposeViewController;
@protocol BITFeedbackComposeViewControllerDelegate <NSObject>
@optional
///-----------------------------------------------------------------------------
/// @name View Controller Management
///-----------------------------------------------------------------------------
/**
Invoked once the compose screen is finished via send or cancel
If this is implemented, it's the responsibility of this method to dismiss the presented
`BITFeedbackComposeViewController`
@param composeViewController The `BITFeedbackComposeViewController` instance invoking this delegate
*/
- (void)feedbackComposeViewControllerDidFinish:(BITFeedbackComposeViewController *)composeViewController;
@end