ViewController icon indicating copy to clipboard operation
ViewController copied to clipboard

:pushpin: A view controller manages a set of views that make up a portion of your app’s user interface,it aims to make ui develop change more clear and flexible.(ViewControler 是一种界面开发组件化实现...

Results 1 ViewController issues
Sort by recently updated
recently updated
newest added

作者的想法很nice,将复杂界面模块化,我有个疑问: 为何要把几个模块自定义成普通class(例如HouseCommentViewController ),而不是直接封装成View(例如HouseCommentView),然后在Activity中直接动态添加这些View即可,View有自己的生命周期(onDestroy中的释放操作就可以放到View的onDettachWindow),并且可以直接拿到context(不需要额外传进去)