Changeset 654
- Timestamp:
- 01/15/10 15:10:52 (8 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
apps/iphone/my.tel/trunk/Classes/AccountViewController.m
r651 r654 129 129 // successResult = { 130 130 // success: true, 131 // folderList: [{id: 12, name: "cartman.tel", soConnection: "Active" },132 // {id: 23, name: "stan.cartman.tel", soConnection: "Uninitialised" },133 // {id: 14, name: "henry.tel", soConnection: "Incomplete" }],131 // folderList: [{id: 12, name: "cartman.tel", soConnection: "Active", displayString: "Eric Cartman"}, 132 // {id: 23, name: "stan.cartman.tel", soConnection: "Uninitialised", displayString: "Stan"}, 133 // {id: 14, name: "henry.tel", soConnection: "Incomplete", displayString: "The main man"}], 134 134 // actionMessages: ["request successful", 135 //136 //137 135 // "2nd message here", 138 136 // "3rd message here"] … … 194 192 case kKAccountTableViewSectionDomains: 195 193 theDomain = [self.domainsArray objectAtIndex:indexPath.row]; 196 if ([theDomain objectForKey:@"displayString"] != nil) {194 if ([theDomain objectForKey:@"displayString"] != [NSNull null]) { 197 195 cell = [tableView dequeueReusableCellWithIdentifier:DSDomainCellIdentifier]; 198 196 if (cell == nil) {








