Inheritance: UITableViewController
コード例 #1
0
            public TableSource(TwitterTableViewController tvc)
            {
                _tvc = tvc;
                _images = new Dictionary<string, UIImage>();

                _baseLabelSize = new SizeF(258, 1000.0f);
            }
コード例 #2
0
        private void InitializeTwitterTab()
        {
            twitterTableViewController = new TwitterTableViewController();

            twitterNavigationController = new NDC2010NavigationController();
            twitterNavigationController.TabBarItem = new UITabBarItem("Twitter", UIImage.FromFile("Twitter/TabIcon.png"), 0);
            twitterNavigationController.PushViewController(twitterTableViewController, false);
        }