Desidero aumentare la diffusione di un'ombra nella mia UILabel ma non riesco a trovare la proprietà per farlo. Ho aggiunto una foto qui sotto per illustrare il problema.iOS - Shadow spread su UILabel
La parte superiore Label è l'effetto desiderato sono in grado di creare in Photoshop. L'etichetta in basso illustra le proprietà che sono riuscito a trovare su iOS. Ecco il codice che ho usato per l'etichetta in basso.
let bottomLabel = UILabel(frame: CGRectMake(0, 0, maxWidth, 18))
bottomLabel.backgroundColor = UIColor.clearColor()
bottomLabel.textColor = UIColor.whiteColor()
bottomLabel.font = UIFont.boldSystemFontOfSize(16)
bottomLabel.text = title
bottomLabel.textAlignment = .Center
bottomLabel.numberOfLines = 1
bottomLabel.layer.shadowOffset = CGSize(width: 0, height: 0)
bottomLabel.layer.shadowOpacity = 1
bottomLabel.layer.shadowRadius = 2
Ho trovato un suggerimento per utilizzare una seconda etichetta come un'ombra, ma questo non ha dato il risultato desiderato. Ecco il codice per quell'etichetta.
let bottomLabelShadow = UILabel(frame: CGRectMake(0, 1, maxWidth, 18))
bottomLabelShadow.backgroundColor = UIColor.clearColor()
bottomLabelShadow.textColor = UIColor.blackColor()
bottomLabelShadow.font = UIFont.boldSystemFontOfSize(16)
bottomLabelShadow.text = title
bottomLabelShadow.textAlignment = .Center
bottomLabelShadow.numberOfLines = 1
bottomLabelShadow.layer.shadowOffset = CGSize(width: 0, height: 0)
bottomLabelShadow.layer.shadowOpacity = 1
bottomLabelShadow.layer.shadowRadius = 2
in realtà c'è un buon articolo su ombre https://makeapppie.com/2015/05/19/swift-swift-how-to-make-a-drop-shadow-in-user-interfaces/ –