Search code examples
iosxcodeswiftuitableviewcell

Custom UITableViewCell


Does anybody have the slightest idea on how I can achieve this type of effect on my table view cells?

enter image description here

or do you guys know a blog, Git, Repo that has nice TableViewCell make ups? thanks


Solution

    1. In your storyboard, make everything transparent and set those images as your background.
    2. Then you can use '

    UIVisualEffectView | UIVisualEffectView with Blur class

    ' to set those blurs on your custom cells, make sure that your cell's background color is also in transparent mode.

    or use

    CAGradientLayer Class

    to set them up.