mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-22 22:25:57 +00:00
Add a UIActivity subclass and the option to invoke compose view from anywhere modally
This commit is contained in:
31
Classes/BITFeedbackComposeViewControllerDelegate.h
Normal file
31
Classes/BITFeedbackComposeViewControllerDelegate.h
Normal 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
|
||||
Reference in New Issue
Block a user