0

I am using UITabBarController & UITableView My goal is to remove blur view for particular cell. Yes there is a way to add/remove UIBlurEffectto all the cell & bottom-Tabbbar But of-course don't want this at all .

For reference i am attaching screenshot

enter image description here

Ramesh
  • 147
  • 1
  • 17
  • you can add blur view in cellforrow ta indexpath method and in that particular cell you not need blur you not add in that cell. – Sagar Bhut Aug 23 '18 at 04:36

1 Answers1

1

What you are asking is to add Blur view to full screen except target cell. as tableivew resues cell so you have only option left is

You can take screenshot of particular cell

Here is code sample

Swift 3 - How to take a screenshot of specific UITableView row

After that create Blur view for entire full tableview and add screenshot image to Y position of target cell

Prashant Tukadiya
  • 15,838
  • 4
  • 62
  • 98