わかりました、私はこれをやっています:
UIButton btReturn;
btReturn = UIButton.FromType (UIButtonType.RoundedRect);
btReturn.Frame = btnBounds;
btReturn.SetTitle (Caption, UIControlState.Normal);
btReturn.Layer.CornerRadius = 14;
btReturn.ClipsToBounds = true;
btReturn.TouchUpInside += touchHandler;
btReturn.BackgroundColor = UIColor.FromRGB (0xe4, 0x96, 0x37);
return btReturn;
これは疑問を投げかけます...なぜそれは白い背景として出てくるのですか? もともと背景画像でクリアにしようとしたのですが、それもうまくいきません...
何が間違っている可能性がありますか?