I've been trying to avoid for loop
all day but I can't anymore. Guys, how do I do the following: I have 9 UIButtons
called :imageCallerButton1
,imageCallerButton2
,imageCallerButton3,etc
is there a way to change the radius using a for loop instead of adding 18lines?
for (int i =9; i<=9; ++i) {
imageCallerButton1.layer.cornerRadius = 10;
imageCallerButton1.clipsToBounds = YES;
}