This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (id)tableView:(UITableView*)tableView objectAtIndexPath:(NSIndexPath*)indexPath | |
{ | |
if (indexPath.section == TAPSearchDataSourceSectionTopTalkers) { | |
if ((indexPath.row == [tableView numberOfRowsInSection:0] - 1) && self.shouldShowAutocompleteTalker && [self autocompletedTalker]) { | |
return self.autocompletedTalker; | |
} else if (!self.topTalkers.count || indexPath.row > self.topTalkers.count - 1) { | |
return self.searchService.serverSearchResultsForTalkers[indexPath.row - self.topTalkers.count]; | |
} | |
return self.topTalkers[indexPath.row]; | |
} else if (indexPath.section == TAPSearchDataSourceSectionTopConversations) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(lldb) po responseObject | |
{ | |
meta = { | |
code = 200; | |
}; | |
"salesforce_objects" = ( | |
{ | |
name = "WO-00008710"; | |
"salesforce_id" = a1g1I0000005WcZQAU; | |
type = "SVMXC__Service_Order__c"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Extra Small | |
UICTFontTextStyleHeadline | |
.SFUIText-Semibold <UICTFont: 0x13e554c10> font-family: ".SFUIText-Semibold"; font-weight: bold; font-style: normal; font-size: 14.00pt | |
UICTFontTextStyleSubhead | |
.SFUIText-Regular <UICTFont: 0x13e5581b0> font-family: ".SFUIText-Regular"; font-weight: normal; font-style: normal; font-size: 12.00pt | |
UICTFontTextStyleBody | |
.SFUIText-Regular <UICTFont: 0x13e55cfd0> font-family: ".SFUIText-Regular"; font-weight: normal; font-style: normal; font-size: 14.00pt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
po responseObject | |
{ | |
id = 18562; | |
"last_viewed_message_id" = 38837; | |
participating = 1; | |
talker = { | |
address = "tyler@1minute.tapfoo.io"; | |
"avatar_url" = "<null>"; | |
"first_name" = Tyler; | |
id = 158560; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sequencer_ = [[Sequencer alloc] init]; | |
[sequencer_ addTarget:self action:@selector(parseUserData) dependencies:LSLoggedIn, LSUserDataDownloaded, LSEnd]; | |
[sequencer_ addTarget:self action:@selector(startGame) dependencies:LSLoggedIn, LSAssetsLoaded, LSUserDataDownloaded, LSEnd]; |