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

@@ -29,8 +29,14 @@
#import <UIKit/UIKit.h>
#import "BITFeedbackComposeViewControllerDelegate.h"
@interface BITFeedbackComposeViewController : UIViewController <UITextViewDelegate>
@property (nonatomic, assign) id<BITFeedbackComposeViewControllerDelegate> delegate;
- (id)init;
- (id)initWithDelegate:(id<BITFeedbackComposeViewControllerDelegate>)delegate;
@end