關(guān)于navigationController
//刪除navigationController所帶的側(cè)滑(從二級(jí)界面到一級(jí)界面)
self.navigationController.interactivePopGestureRecognizer.enabled = NO;
//關(guān)于table
//選中后立即取消選中狀態(tài)
[tableViewdeselectRowAtIndexPath:indexPathanimated:NO];
//給table加箭頭
cell.accessoryType=UITableViewCellAccessoryDisclosureIndicator;
//刪除多余的分割線
[tableViewsetTableFooterView:[[UIViewalloc]initWithFrame:CGRectZero]];
//取消點(diǎn)擊效果
cell.selectionStyle=UITableViewCellSelectionStyleNone;