gpt4 book ai didi

iphone - 将 UIVIew 作为 SubView 添加到窗口 iPhone 的右下角

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:55:11 25 4
gpt4 key购买 nike

目前我有一个大小为 100px 宽 x 40px 高的 UIView。如果我使用

添加它

[self.view addSubView:buttonsView];

它将这个小的 UIVIew 添加到我的 iPhone 屏幕的左上角。

有没有办法让它添加到右下角?

最佳答案

在添加 buttonView 之前,设置它的“frame”属性:

一种方式:

buttonsView.frame = CGRectMake( 
self.view.frame.size.width - buttonsView.frame.size.width,
self.view.frame.size.height - buttonsView.frame.size.height,
buttonsView.frame.size.width,
buttonsView.frame.size.height );

关于iphone - 将 UIVIew 作为 SubView 添加到窗口 iPhone 的右下角,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7893139/

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