1

我已将一些UIButton对象添加到 .xib 文件中,并UIButton在代码中添加了一些对象。

但现在我面临一个问题。缩放 UIImageView 时,通过代码添加的 UIButtons 显示在 UIImageView 上,使用 .xib 文件添加的 UIImageView 位于 UIImageView 下方。

添加了代码的 UIButton 代码:

btnBrightness = UIButton.FromType (UIButtonType.RoundedRect);
btnBrightness.Frame = new RectangleF (540, 20, 95, 37);
btnBrightness.SetTitle ("Brightness", UIControlState.Normal);

更多细节: 单触式

4

1 回答 1

1

解决我只是在 ViewDidLoad() 中添加一行代码

this.Add(UIImageView)

使用这条线它可以按我的意愿工作。

或者

为所有按钮创建一个容器视图并将按钮添加到此

mainView.InsertSubview(buttonContainerView,mainView.Subviews.Count);

于 2012-04-13T05:24:29.010 回答