美文网首页
关于IOS一些技巧

关于IOS一些技巧

作者: RunSnails | 来源:发表于2016-05-27 09:52 被阅读11次

    关于navigationController

    //删除navigationController所带的侧滑(从二级界面到一级界面)

    self.navigationController.interactivePopGestureRecognizer.enabled = NO;

    //关于table

    //选中后立即取消选中状态

    [tableViewdeselectRowAtIndexPath:indexPathanimated:NO];

    //给table加箭头

    cell.accessoryType=UITableViewCellAccessoryDisclosureIndicator;

    //删除多余的分割线

    [tableViewsetTableFooterView:[[UIViewalloc]initWithFrame:CGRectZero]];

    //取消点击效果

    cell.selectionStyle=UITableViewCellSelectionStyleNone;

    相关文章

      网友评论

          本文标题:关于IOS一些技巧

          本文链接:https://www.haomeiwen.com/subject/htoxdttx.html