public
Description: iPhone FriendFeed client
Homepage:
Clone URL: git://github.com/shanev/friendfeed-iphone.git
Click here to lend your support to: friendfeed-iphone and make a donation at www.pledgie.com !
friendfeed-iphone / PreferencesController.h
100644 24 lines (17 sloc) 0.507 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
//
// preferencesController.h
// FriendFeed
//
// Created by Nicolas Rolland on 1/18/09.
// Copyright 2009 __MyCompanyName__. All rights reserved.
//
 
 
#import <UIKit/UIKit.h>
 
extern NSString * const FFSettingsChanged;
extern NSString * const FFUserName;
extern NSString * const FFRemoteKey;
 
 
@interface PreferencesController : UIViewController <UITextFieldDelegate> {
IBOutlet UITextField *userNameField;
IBOutlet UITextField *remoteKeyField;
}
 
- (IBAction) deactivateBothFields:(id)sender;
@end