0
ダイナミックに作成されたUIViewを使ってscrollviewを動的に作成しpopuleiを作成しました。 毎月スクロールビューに表示されるビューのカレンダーですが、問題は機能しません。 誰でも解決できますか? ありがとうございましたUIScrollViewがuiviewでスクロールしない
double larguraTela = UIScreen.MainScreen.Bounds.Width * 0.01;
scrollView = new UIScrollView(new CGRect((nfloat)larguraTela * 3, 105, (nfloat)larguraTela * 94, UIScreen.MainScreen.Bounds.Height-110));
scrollView.BackgroundColor = UIColor.FromRGB(60, 60, 60);
scrollView.ScrollEnabled = true;
scrollView.UserInteractionEnabled = true;
View.AddSubview(scrollView);
scrollView.AddSubview(Calendario(1));
scrollView.AddSubview(Calendario(2));
scrollView.AddSubview(Calendario(3));
}
public UIView Calendario(int mes)
{
UIView local = new UIView(new CGRect(0, altura, scrollView.Frame.Width, 185));
local.BackgroundColor = UIColor.FromRGB(60, 60, 60);
... 復帰ローカル。あなたがscrollviewのContentSizeを設定する必要が }
ありがとう –