在IOS应用程序中将两个或三个图像放在一个圆形中

时间:2014-07-19 16:11:18

标签: ios objective-c

enter image description here

我试图在这个形状中得到两个用户的图像,每个用圆圈的半圆形,但没有成功,任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

使用此代码可能对您有所帮助     _imgViewProfile = [[UIImageView alloc] initWithFrame:CGRectMake(10,10,44,44)];     [_imgViewProfile.layer setCornerRadius:_imgViewProfile.bounds.size.width / 2];     _imgViewProfile.clipsToBounds = YES;

为了使圆形你的uiImageview的高度和宽度应相等。