- Timestamp:
- 01/11/10 14:02:55 (3 years ago)
- Location:
- apps/iphone/my.tel/trunk/Classes
- Files:
-
- 2 modified
-
AccountViewController.h (modified) (1 diff)
-
AccountViewController.m (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
apps/iphone/my.tel/trunk/Classes/AccountViewController.h
r612 r627 35 35 - (void)updateDomainListWithJson:(NSDictionary *)parsedJson; 36 36 - (void)getDomainList; 37 - (void)displayControllerForDomainAtIndex:(NSUInteger)index ;37 - (void)displayControllerForDomainAtIndex:(NSUInteger)index animated:(BOOL)animated; 38 38 39 39 @property (nonatomic, copy) NSString *accountLabel; -
apps/iphone/my.tel/trunk/Classes/AccountViewController.m
r626 r627 57 57 if (didDelayRedirectToSingleDomain) { 58 58 didDelayRedirectToSingleDomain = NO; 59 [self displayControllerForDomainAtIndex:0 ];59 [self displayControllerForDomainAtIndex:0 animated:NO]; 60 60 } 61 61 } … … 152 152 } 153 153 154 - (void)displayControllerForDomainAtIndex:(NSUInteger)index {154 - (void)displayControllerForDomainAtIndex:(NSUInteger)index animated:(BOOL)animated { 155 155 NSDictionary *theDomain = [self.domainsArray objectAtIndex:index]; 156 156 DomainViewController *dVC = [DomainViewController controllerForDomain:(NSString *)[theDomain objectForKey:@"name"]]; 157 [self.navigationController pushViewController:dVC animated: YES];157 [self.navigationController pushViewController:dVC animated:animated]; 158 158 } 159 159 … … 235 235 self.shouldRedirectToSingleDomain = NO; 236 236 didDelayRedirectToSingleDomain = NO; 237 [self displayControllerForDomainAtIndex:indexPath.row ];237 [self displayControllerForDomainAtIndex:indexPath.row animated:YES]; 238 238 break; 239 239 case kKAccountTableViewSectionEditSettings:








