Changeset 653
- Timestamp:
- 01/15/10 15:09:49 (2 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
apps/iphone/my.tel/trunk/Classes/RootViewController.h
r641 r653 29 29 NSString *dataFilePath; 30 30 NSMutableArray *accountsArray; 31 NS Integer currentDomainIndex; // index of the current domain in the current account (set from the account view controller)31 NSUInteger currentDomainIndex; // index of the current domain in the current account (set from the account view controller) 32 32 @private 33 33 BOOL mustLogin; 34 NS Integer _currentAccountIndex; // accountsArray index of the account being edited or viewed34 NSUInteger _currentAccountIndex; // accountsArray index of the account being edited or viewed 35 35 } 36 36 37 37 - (void)loginToCurrentAccount; 38 - (void)loginToAccountAtIndex:(NS Integer)accountIndex forced:(BOOL)forced;38 - (void)loginToAccountAtIndex:(NSUInteger)accountIndex forced:(BOOL)forced; 39 39 - (void)postLoginProcess:(NSDictionary *)parsedJson; 40 - (void)displayControllerForAccountAtIndex:(NS Integer)accountIndex;41 - (void)editAccountAtIndex:(NS Integer)accountIndex;40 - (void)displayControllerForAccountAtIndex:(NSUInteger)accountIndex; 41 - (void)editAccountAtIndex:(NSUInteger)accountIndex; 42 42 - (void)deleteCurrentAccount; 43 43 … … 48 48 @property (nonatomic, retain) NSString *dataFilePath; 49 49 @property (nonatomic, retain) NSMutableArray *accountsArray; 50 @property (nonatomic) NS Integer currentAccountIndex;50 @property (nonatomic) NSUInteger currentAccountIndex; 51 51 @property (nonatomic, readonly) NSDictionary *currentAccount; 52 52








