We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 105e9e2 commit ab57cbbCopy full SHA for ab57cbb
1 file changed
GraphicsPerformance-Starter/GraphicsPerformance-Starter/CustomTableCell.swift
@@ -14,6 +14,12 @@ class CustomTableCell: UITableViewCell {
14
15
override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
16
super.init(style: style, reuseIdentifier: reuseIdentifier)
17
+
18
+ imgView.layer.shadowColor = UIColor.blackColor().CGColor
19
+ imgView.layer.shadowOpacity = 1
20
+ imgView.layer.shadowRadius = 2
21
+ imgView.layer.shadowOffset = CGSizeMake(1, 1)
22
23
label.layer.shouldRasterize = true
24
25
self.contentView.addSubview(imgView)
0 commit comments