I use custom button in my app named \"addButton\" and I want to border it with white color how can i get the white color border around my custom button?
To change button Radius, Color and Width I set like this:
self.myBtn.layer.cornerRadius = 10; self.myBtn.layer.borderWidth = 1; self.myBtn.layer.borderColor =[UIColor colorWithRed:189.0/255.0f green:189.0/255.0f blue:189.0/255.0f alpha:1.0].CGColor;