IOS tableView with time left

I am creating an iOS application that will benefit from a time from 07:00 to 16:00 (indicated by the user) to the left of the UITableViewCell, like this:

enter image description here

What would be the best approach for this behavior, including the possibility of a colored rectangle over several cells? I assume that you will create a custom cell, but this is a colored rectangle (appointments on the iOS calendar), which I am not sure how to go, since it stretches over several cells.

Can someone point me in the right direction, give me any links or something that could push me away? Just an explanation of how this could be done is helpful.

Thanks a lot! Erik

0
source share
1 answer

I think you need to look in a UICollectionView using a powerful apis layout for this problem than a UITableView.

There is a lot to dig though.

Some of these materials may be helpful to you:

0
source

All Articles