Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Swift 0.33 KB | None | 0 0
  1.  override func viewDidLoad() {
  2.         super.viewDidLoad()
  3.         nombreTxt.delegate = self;
  4.         estiloImg()
  5.     }
  6.    
  7.     func estiloImg(){
  8.         self.imgView.layer.borderWidth = 3
  9.         imgView.layer.borderColor = UIColor.white.cgColor;
  10.         imgView.layer.cornerRadius = 20
  11.         imgView.clipsToBounds = true;
  12.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement