gpt4 book ai didi

ios - 在 UIImageView 的右上角添加 UIButton

转载 作者:行者123 更新时间:2023-11-28 21:39:13 25 4
gpt4 key购买 nike

我正在尝试以编程方式在 UIImageView 的右上角创建一个 UIButton,到目前为止,我有一个 UIImageView,并且我想在图像加载到 ImageView 时在 UIImageView 的右上角创建一个 UIButton。我不确定我怎么能做到这一点。

  UIButton *button = [UIButton buttonWithType:UIButtonTypeSystem];
[button setTitle:@"X" forState:UIControlStateNormal];
[button sizeToFit];
button.center = CGPointMake(self.img1.frame.origin.x+self.img1.frame.size.width,self.img1.bounds.origin.y);

[self.img1 addsubView : 按钮];

这里,img1 是一个 ImageView 。我想在 img1 的右上角添加该按钮。

我怎样才能做到这一点?

最佳答案

[self.img1 addSubView:button];
[button setFrame:CGRectMake(self.img1.size.width-button.frame.size.width,0,button.frame.size.width, button.frame.size.height)];

关于ios - 在 UIImageView 的右上角添加 UIButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32742672/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com