gpt4 book ai didi

ios - 将 float 的 UIButton 放在 UICollectionView 之上

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

我拼命想在我的 UICollectionView 上放置一个 UIButton。目标类似于新的 foursquare 应用程序中的签到按钮。

我的代码目前看起来是这样的:

UIButton *floatingButton = [[UIButton alloc] init];
[floatingButton setFrame:CGRectMake(320, 150, 50, 50)];
[floatingButton setBackgroundColor:[UIColor blackColor]];
[self.collectionView addSubview:floatingButton];
[self.collectionView bringSubviewToFront:floatingButton];

问题是按钮不在任何地方。

最佳答案

您可能想将按钮添加到 collectionView 的父 View 。最有可能是 self.view,但如果没有看到更多代码就很难确定。

代替

[self.collectionView addSubview:floatingButton];

你可能想要

[self.view addSubview:floatingButton];

关于ios - 将 float 的 UIButton 放在 UICollectionView 之上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16530891/

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