首页 > 代码库 > iOS把一个简单的图形变成一个圆

iOS把一个简单的图形变成一个圆

   push是定义的一个button

    push.layer.masksToBounds = YES;

    push.layer.cornerRadius = 100;

    push.layer.borderWidth = 10;

    push.layer.borderColor = [[UIColor blackColor] CGColor];

iOS把一个简单的图形变成一个圆