Я хочу создать TTTabbar, который будет отображаться вертикально, а не горизонтально, как по умолчанию.
До сих пор я пытался повернуть TTTabbar с помощью cgaffinetransformmakerotation, но безуспешно.
когда я вращаюсь, она растягивается.
есть предложения?
:)
[EDIT]
Я должен был добавить TTtabbar к uiview, в противном случае tttabbar растягивается по всему экрану
this.rightView = new UIView();
this.rightView.BackgroundColor = UIColor.ScrollViewTexturedBackgroundColor;
RectangleF applicationFrame = UIScreen.MainScreen.ApplicationFrame;
//applicationFrame.Y -=20;
TTTabBar ttTabBar = new TTTabBar(new RectangleF(0,0,applicationFrame.Height,40));
ttTabBar.TabItems = NSArray.FromNSObjects(new TTTabItem("one"),new TTTabItem("two"),new TTTabItem("three"));
rightView.Frame = new RectangleF(110,applicationFrame.Height/2,applicationFrame.Height,40);
this.rightView.AddSubview(ttTabBar);
rightView.Transform = CGAffineTransform.MakeRotation((float)(Math.PI*90)/180);