M
Size: a a a
M
ᅠ
ᅠ
ᅠ
🕷
R
cornerRadius
у изображения в tableView
. у самого слоя только разобрался как cornerRadius
поменятьR
R
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath)
var content = cell.defaultContentConfiguration()
content.text = restaurantName[indexPath.row]
content.image = UIImage(named: restaurantName[indexPath.row])
cell.backgroundColor = .blue
cell.layer.cornerRadius = 40
cell.clipsToBounds =
trueR
cornerRadius
🅰Б
date = Date() // дата начала недели
let endOfWeek = Calendar.current.date(byAdding: .day, value: 6, to: date) // дата через 6 дней
R
🕷
🕷