gpt4 book ai didi

iphone - iOS - 如何将 UIImage 和 UILabel 作为页脚放在同一行?

转载 作者:行者123 更新时间:2023-11-28 19:15:12 25 4
gpt4 key购买 nike

我需要在我的 View 中有一个页脚,上面写着“Powered by: {image_logo_of_my_company}”我该如何实现?

最佳答案

创建类型为 UIView 的包装器 View ,并在该 View 内的适当坐标处的 UIImageView 中添加 UILabel 和 Logo 。

UIView *wrapper = [[UIView alloc] initWithFrame:footerFrame]; 
UILabel *label = [[UILabel alloc] initWithFrame:
CGRectMake(0, 0, footerFrame.size.width*0.6, footerFrame.size.height)];
UIImageView *imageView = [[UIImageView alloc] initWithFrame:
CGRectMake(footerFrame.size.width*0.6, 0,
footerFrame.size.width*(1.0-0.6), footerFrame.size.height)];
[wrapper addSubView:label];
[wrapper addSubView:imageView];
label.text = @"Powered by: ";
imageView.image = [UIImage imageNamed:@"logo"]; // assumes logo.png & logo@2x.png
[viewNeedingFooter addSubView:wrapper];

假设您需要 60% 的页脚宽度用于标签,40% 用于 Logo 。

关于iphone - iOS - 如何将 UIImage 和 UILabel 作为页脚放在同一行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12586866/

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