implemented a mentions view
This commit is contained in:
parent
1e92b50515
commit
da7cc71f4e
9 changed files with 215 additions and 89 deletions
|
@ -8,12 +8,13 @@
|
|||
|
||||
#import <Cocoa/Cocoa.h>
|
||||
#import <WebKit/WebKit.h>
|
||||
#import "StatusView.h"
|
||||
|
||||
@interface ViewDelegate : NSObject<StatusView> {
|
||||
WebView *webView;
|
||||
@interface ViewDelegate : NSObject {
|
||||
WebView *timelineView;
|
||||
WebView *mentionsView;
|
||||
}
|
||||
|
||||
-(id)initWithWebView:(WebView *) webView;
|
||||
@property (nonatomic, assign) WebView *timelineView;
|
||||
@property (nonatomic, assign) WebView *mentionsView;
|
||||
|
||||
@end
|
||||
|
|
Reference in a new issue