美文网首页SO 问题来了
总结项目中遇到的一些问题

总结项目中遇到的一些问题

作者: 失忆的程序员 | 来源:发表于2016-06-14 12:27 被阅读37次

    button

    button.clipsToBounds = YES;

    发现UIView有一个clipsTobounds的属性,于是吧view.clipsTobounds设置为YES, 发现界面上button看不见了,继续看了些clipsTobounds的资料,原来是button的frame超出了view的frame的范围(即button的坐标超出view的frame了), clipsTobounds默认值是NO, 即超出范围后依然可以显示,但是超出范围这部分是无法响应触摸事件的,把 clipsTobounds设置为YES后,超出范围这部分的内容就不会再显示了。在上面的代码中给view设置一个frame后,button的响应就正常了。


    tabBar是否透明状态

    self.tabBarController.tabBar.translucent = NO;

    添加scrollView 在view上 有时候会遇到 因下拉回不去顶部 需要设置如下

    self.automaticallyAdjustsScrollViewInsets = NO;

    //cell分割线

    self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;

    // 取消选中这一行

    [tableView deselectRowAtIndexPath:indexPath animated:YES];

    //tableView的编辑模式

    tableView.eniting = Yes

    tableView.eniting = No

    相关文章

      网友评论

        本文标题:总结项目中遇到的一些问题

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