A
A
artursk2015-11-04 02:37:55
iOS
artursk, 2015-11-04 02:37:55

How to customize uitableview on iOS?

How to make a semi-transparent semi-blurred tableview from the code so that the backgroundimage can be seen at least somehow?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Alexander, 2015-11-04
@alexyat

You need to make the cells transparent and translucent tableView.alpha = 0.8;
and
cell.backgroundColor = [UIColor clearColor];
cell.contentView.backgroundColor = [UIColor clearColor];

M
Maxim Globak, 2017-03-10
@maximglobak

If the tableView has alpha 0.8, then the cells will become translucent, including the text on them
. You can put a blurred view on the picture below the table and then put the table
tableView.backgroundColor = [UIColor clearColor];
then if the cell is not custom, then it will be enough to assign a transparent background
cell.backgroundColor = [UIColor clearColor];
further according to circumstances.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question