Odpowiedzi:
Ustaw właściwość clipsToBounds
na true
addMessageLabel.clipsToBounds = true
Myślę, że najlepszym sposobem ustawienia promienia narożnika jest:
i upewnij się, że „Klipy podrzędne” są zaznaczone:
Sprawdzanie „Clip Subviews” jest równe kodowi addMessageLabel.clipsToBounds = YES;
.
Wypróbuj następujące
[[addMessageLabel layer] setCornerRadius:5.0f];
[[addMessageLabel layer] setMasksToBounds:YES];
//or
[addMessageLabel setClipsToBounds:YES];
Szybki
addMessageLable.layer.cornerRadius = 5.0
addMessageLable.layer.masksToBounds = true
//or
addMessageLable.layer.clipsToBounds = true
Mój problem był nieco inny.
A ja nie zrobić btn.clipsToBounds = true
Nie chciałem robić:
btn.layer.cornerRadius = 20
Ponieważ miałem różne rozmiary ekranu. Zamiast tego podążyłem za tą odpowiedzią i zrobiłem:
override func layoutSubviews() {
seeMoreButton.layer.cornerRadius = seeMoreButton.bounds.size.height / 2
}
To nie działało, bo zapomniałem dodać super.layoutSubviews()
. Prawidłowy kod to:
override func layoutSubviews() {
super.layoutSubviews()
seeMoreButton.layer.cornerRadius = seeMoreButton.bounds.size.height / 2
}
Próbowałem poniżej i mam udane wyjście.
yourlabelname.layer.cornerRadius = 10.0f;
[yourlabelname setClipsToBounds:YES];
Czy jest coś jeszcze, co Cię powstrzymuje?
clipsToBounds
był domyślnie YES
ustawiony na , więc linii [yourlabelname setClipsToBounds:YES];
nie było w moim oryginalnym kodzie.
//works perfect in Swift 2.0 for a circular or round image
@IBOutlet var theImage: UIImageView!
override func viewDidLoad() {
super.viewDidLoad()
//Make sure the width and height are same
self.theImage.layer.cornerRadius = self.theImage.frame.size.width / 2
self.theImage.layer.borderWidth = 2.0
self.theImage.layer.borderColor = UIColor.whiteColor().CGColor
self.theImage.clipsToBounds = true
}
yourlabelname.layer.cornerRadius = yourlabelname.frame.size.width/2;
[yourlabelname setClipsToBounds:YES];
Upewnij się, że sprawdzasz z odpowiednim celem wdrożenia.
Dodaj następujący kod jako rozszerzenie dla UIView
//// Story board Extra Feature for create border radius, border width and border Color
extension UIView {
/// corner radius
@IBInspectable var borderColor: UIColor? {
set {
layer.borderColor = newValue!.cgColor
}
get {
if let color = layer.borderColor {
return UIColor(cgColor: color)
} else {
return nil
}
}
}
@IBInspectable var borderWidth: CGFloat {
set {
layer.borderWidth = newValue
}
get {
return layer.borderWidth
}
}
@IBInspectable var cornerRadius: CGFloat {
set {
layer.cornerRadius = newValue
clipsToBounds = newValue > 0
}
get {
return layer.cornerRadius
}
}
}
Następnie otrzymasz następujące atrybuty w samym kreatorze interfejsów.!