设置边框 设置圆角


   
// 设置阴影透明度
   
_redView . layer . shadowOpacity = 1 ;
   
   
// 设置阴影颜色
   
_redView . layer . shadowColor = [ UIColor yellowColor ]. CGColor ;
   
   
// 设置阴影圆角半径
   
_redView . layer . shadowRadius = 10 ;
   
   
// 设置圆角半径
   
_redView . layer . cornerRadius = 50 ;
   
   
// 设置边框半径
   
_redView . layer . borderColor = [ UIColor whiteColor ]. CGColor ;
   
   
// 设置边框半径
   
_redView . layer . borderWidth = 2 ;
}

你可能感兴趣的:(iOS)