加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

ios – 在主视图层上方添加子视图

发布时间:2020-12-14 17:38:12 所属栏目:百科 来源:网络整理
导读:我在其父视图的CALayer上方添加子视图时遇到问题. 我试图附加图像来显示我的意思,但我没有足够的声誉,所以这里是图像的链接: http://imageshack.us/photo/my-images/843/img0219u.png/ 子视图的一部分被父视图边框遮挡. 如何使子视图显示在父视图层的顶部?
我在其父视图的CALayer上方添加子视图时遇到问题.

我试图附加图像来显示我的意思,但我没有足够的声誉,所以这里是图像的链接:

http://imageshack.us/photo/my-images/843/img0219u.png/

子视图的一部分被父视图边框遮挡.

如何使子视图显示在父视图层的顶部?

任何帮助表示赞赏.

如果有帮助,这是我的代码:

添加图层的代码:

UIView *student = [[UIView alloc] initWithFrame:CGRectMake(50,50,100,100)];
    student.backgroundColor = [UIColor grayColor];

    CALayer *studentLayer = [[CALayer alloc] init];
    studentLayer.borderColor = [UIColor grayColor].CGColor;
    studentLayer.borderWidth = 5;

    student.layer.borderColor = studentLayer.borderColor;
    student.layer.borderWidth = studentLayer.borderWidth;

添加子视图的代码:

UILabel *ilp = [[UILabel alloc] initWithFrame:(CGRectMake(-20,-10,40,20))];
    ilp.text = @"ILP";
    ilp.backgroundColor = [UIColor yellowColor];
    ilp.textColor = [UIColor blackColor];
    ilp.textAlignment = NSTextAlignmentCenter;

    [student addSubview:ilp];

解决方法

到目前为止,这是不可能的,我能想到的最好的解决方案是将子视图及其父视图添加到另一个视图中,而不仅仅是重新排序两个子视图,以便您的子视图位于另一个及其边界之上.

希望有所帮助!

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读