public
Description: Cocoa classes to interact with RESTful services (including Twitter)
Homepage:
Clone URL: git://github.com/sdegutis/CocoaREST.git
CocoaREST / AppDelegate.h
100644 30 lines (21 sloc) 0.526 kb
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
//
// AppDelegate.h
// SDNet
//
// Created by Steven Degutis on 5/27/09.
// Copyright 2009 Thoughtful Tree Software. All rights reserved.
//
 
#import <Cocoa/Cocoa.h>
 
#import "SDTwitterTaskManager.h"
 
@interface AppDelegate : NSObject {
SDTwitterTaskManager *manager;
 
BOOL isWaiting;
NSArray *results;
 
IBOutlet NSTextField *userField;
IBOutlet NSTextField *passField;
IBOutlet NSPopUpButton *taskTypeButton;
}
 
@property BOOL isWaiting;
@property (copy) NSArray *results;
 
- (IBAction) runTask:(id)sender;
 
@end