iOS Engs Sync - 13 Feb 2018

Infer

Animate Cell Pressed on Tableview or Collectionview

tableView:didHighlightRowAtIndexPath:
tableView:didUnhighlightRowAtIndexPath:
collectionView:didHighlightItemAtIndexPath:
collectionView:didUnhighlightItemAtIndexPath:
(void)setHighlighted:(BOOL)highlighted {
    [super setHighlighted:highlighted];
    if (highlighted) {
        // Animate highlighted cell here.
    }
    else {
        // Animate unhighlighted cell here.
    }
}

Unit Testing on Trip Team

Use case:

Obstacles:

Justification why unit test is important to PM:

Repository Migration Decision and Plan