Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含 2 个按钮(视频、歌曲)的主视图
单击时如何使视频按钮移至视频视图,以及将歌曲按钮移至歌曲视图时如何?
谢谢
您可以使用[videoBtn removeFromSuperView];并添加一行[videoView addSubView:videoBtn];
[videoBtn removeFromSuperView];
[videoView addSubView:videoBtn];
在这里您可能需要再次设置 videoBtn 帧以进行相应调整。