borderRadius not working on UILabel

This commit is contained in:
Vladimir Enchev
2015-09-23 10:03:08 +03:00
parent d517c68a0e
commit 4e6f4aaf3f

View File

@ -112,6 +112,7 @@ export class DefaultStyler implements definition.stylers.Styler {
private static setBorderRadiusProperty(view: view.View, newValue: any) {
if (view._nativeView instanceof UIView) {
(<UIView>view._nativeView).layer.cornerRadius = newValue;
(<UIView>view._nativeView).clipsToBounds = true;
}
}