forked from Awful/Awful.app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAwfulReplyComposeViewController.h
More file actions
36 lines (22 loc) · 1007 Bytes
/
AwfulReplyComposeViewController.h
File metadata and controls
36 lines (22 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//
// AwfulReplyComposeViewController.h
// Awful
//
// Created by Sean Berry on 11/21/10.
// Copyright 2010 Regular Berry Software LLC. All rights reserved.
//
#import "AwfulComposeViewController.h"
#import "AwfulModels.h"
@protocol AwfulReplyComposeViewControllerDelegate;
@interface AwfulReplyComposeViewController : AwfulComposeViewController
@property (weak, nonatomic) id <AwfulReplyComposeViewControllerDelegate> delegate;
- (void)editPost:(AwfulPost *)post text:(NSString *)text;
- (void)replyToThread:(AwfulThread *)thread withInitialContents:(NSString *)contents;
@end
@protocol AwfulReplyComposeViewControllerDelegate <NSObject>
- (void)replyComposeController:(AwfulReplyComposeViewController *)controller
didEditPost:(AwfulPost *)post;
- (void)replyComposeController:(AwfulReplyComposeViewController *)controller
didReplyToThread:(AwfulThread *)thread;
- (void)replyComposeControllerDidCancel:(AwfulReplyComposeViewController *)controller;
@end