@fiy-fish
2016-04-15T05:50:56.000000Z
字数 613
阅读 1807
iOS点滴
-(void)viewDidLayoutSubviews {if ([self.mytableview respondsToSelector:@selector(setSeparatorInset:)]) {[self.mytableview setSeparatorInset:UIEdgeInsetsZero];}if ([self.mytableview respondsToSelector:@selector(setLayoutMargins:)]) {[self.mytableview setLayoutMargins:UIEdgeInsetsZero];}}-(void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPat{if ([cell respondsToSelector:@selector(setLayoutMargins:)]) {[cell setLayoutMargins:UIEdgeInsetsZero];}if ([cell respondsToSelector:@selector(setSeparatorInset:)]){[cell setSeparatorInset:UIEdgeInsetsZero];}}
