This file contains hidden or 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
// Example: | |
// | |
// Widont makes the last space non-breaking | |
// so you don't end up with one word on its | |
// own. | |
// | |
// Widont makes the last space non-breaking | |
// so you don't end up with one word on | |
// its own. | |
// |
This file contains hidden or 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
- (void)tableView:(UITableView *)tableView didUnhighlightRowAtIndexPath:(NSIndexPath *)indexPath | |
{ | |
// Fix double cell border after highlight | |
if (indexPath.row == self.fetchedResultsController.fetchedObjects.count-1) { | |
UITableViewCell * cell = [self.tableView cellForRowAtIndexPath:indexPath]; | |
UIView *tableScrollView = [[cell subviews] lastObject]; | |
UIView *separator = [[tableScrollView subviews] lastObject]; | |
[separator setBackgroundColor:[UIColor clearColor]]; | |
NewerOlder