You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
//
|
|
|
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
#import "InboxTableViewCell.h"
|
|
|
|
|
#import "Contact.h"
|
|
|
|
|
#import "TSGroupModel.h"
|
|
|
|
|
|
|
|
|
|
@interface SignalsViewController
|
|
|
|
|
: UIViewController <UITableViewDelegate, UITableViewDataSource, UIViewControllerPreviewingDelegate>
|
|
|
|
|
|
|
|
|
|
@property (nonatomic, retain) IBOutlet UITableView *tableView;
|
|
|
|
|
@property (nonatomic, strong) IBOutlet UILabel *emptyBoxLabel;
|
|
|
|
|
@property (nonatomic) BOOL newlyRegisteredUser;
|
|
|
|
|
|
|
|
|
|
- (void)presentThread:(TSThread *)thread
|
|
|
|
|
keyboardOnViewAppearing:(BOOL)keyboardOnViewAppearing
|
|
|
|
|
callOnViewAppearing:(BOOL)callOnViewAppearing;
|
|
|
|
|
- (NSNumber *)updateInboxCountLabel;
|
|
|
|
|
- (void)composeNew;
|
|
|
|
|
|
|
|
|
|
@end
|