Using MVVM in iOS, how should we write the complex Cell ViewModel?
怪我咯
怪我咯 2017-05-31 10:32:43
0
1
621

A question about the MVVM architecture in iOS

The tableView cell in the project is relatively complex, so I split the display form of this cell into: header cell footer Display it like this.
There are multiple items in the cell, similar to JD.com’s shopping cart.

The picture below uses three colors to distinguish the area displayed by a completed cell.

The problem I encountered is: which way should the cell's viewModel be written?

I tried the following two forms to write

  1. ViewModel contains headerViewModelArray cellViewModelArray footerViewModelArray.

    
    这3个 viewModel 的数组分别表示对应一个 cell 中3个view 所用到的 ViewModel。

  2. Write the header cell footer elements that need to be displayed together in the ViewModel

So here comes the problem:
If I use the 1. method to create the viewModel, it will be inconvenient to get the content of the cell, because the cell displays products, and there may be multiple products. Not very good at one-to-one correspondence. Then I used the 2. method to create the ViewModel, but MVVM recommends that the content of the view-model be compressed to the range we need as much as possible. When I assign a value to the footer, the properties corresponding to the cell are actually not needed by me, which is not in line with the recommendations of MVVM.

I think 1. is not reliable, so I used 2..

I would like to ask you to give me some suggestions on using MVVM for this kind of interface.

怪我咯
怪我咯

走同样的路,发现不同的人生

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!