Giter VIP home page Giter VIP logo

zjtableviewmanager's People

Contributors

jzhang0480 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

zjtableviewmanager's Issues

autoHeight后约束报错

xib上设置上下左右约束且显示约束没问题,autoHeight后manager.reload报约束错误。不调用autoHeight不报错误,但是撑不开

三级列表选中问题

三级列表中,在第三级需要有单选的功能,但是我在实现的时候,无法刷新页面数据,不知道为啥。麻烦大神帮忙看下。下面是代码
`for item in linelistModel! {
let item0 = ServerListTitleItem()
item0.model = item
item0.isExpand = true
item0.cellHeight = SXRealValue(55)
section.add(item: item0)

        for group in item.groupList! {
            let item1 = ServerVideoItem()
            item1.model = group
            item1.cellHeight = SXRealValue(60)
            item0.addSub(item: item1, section: section)

            for vm in group.vmList! {
                let item2 = ServerContentItem()
                item2.model = vm
                if vmess.flagId == self.selectModel?.flagId {
                    item2.isSelect = true
                    item1.isExpand = true
                }else {
                    item2.isSelect = false
                    item1.isExpand = false
                }
                item2.cellHeight = SXRealValue(55)
                item1.addSub(item: item2, section: section)
                
                item2.setSelectionHandler { (Model: ServerContentItem) in                      
                    self.selectModel = vmessModel.model
                    self.manager.reload()
                }
            }
        }
    }`

cellDidAppear() 中执行 item.updateHeight()无效

首先,很好用的组件,感谢🙏
我的场景:自定义ZJTableViewCell子类,有一个textView,要求输入文字的时候动态修改cell的高度
问题:现在初始化item会给textView传递内容(富文本),需要根据内容先计算cell高度,然后发现在cellWillAppear()中无法准确获取cell的宽度,进而导致无法计算文字高度,在cellDidDisappear()可以获取cell宽度,但是对item.cellHeight赋值并执行item.updateHeight()没有生效

你好,请问该框架没有滚动事件穿透吗?

你好,最近遇到一个项目需要用ScrollView嵌套TableView,使用了项目中的ExpandTree功能。
然后发现在滚动scrollView时不能对TableView进行滚动,重写了ScrollView中的Simultaneously返回True也不行,请问是我写的有问题吗?还请指导一下,谢谢。

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.