我想以可编程方式在我的应用程序中隐藏约束。我在这个应用程序中有三个按钮,我想隐藏中间按钮。当我运行应用程序时,它显示第一个和第三个按钮之间的一些差距。如何隐藏两个按钮之间的位置?
答案 0 :(得分:0)
UIView *viewButtonsContainer;
UIButton *btnFirst=[[UIButton alloc]init];
UIButton *btnSecond=[[UIButton alloc]init];
UIButton *btnThird=[[UIButton alloc]init];
[btnFirst setFrame:CGRectMake(0, 0, viewButtonsContainer.width/2, btnFirst.height)];
[btnThird setFrame:CGRectMake(btnFirst.width, 0, viewButtonsContainer.width/2, btnThird.height)];
//这是非常简单和基本的,我希望它会有所帮助