protected override void Dispose (bool disposing)
		{
			base.Dispose (disposing);
			Master = null;
		}
		public static void GoToSinglePost(Post post)
		{
			SinglePostViewController vc = new SinglePostViewController();
			vc.post = post;

			UITabBarController TabBarController = ((AppDelegate)UIApplication.SharedApplication.Delegate).TabBarController;
			UINavigationController NavigationController = ((UINavigationController)TabBarController.ViewControllers[TabBarController.SelectedIndex]);
			((NavigationController.ViewControllers[NavigationController.ViewControllers.Length - 1])).NavigationController.PushViewController(vc, true);
		}
		public CommentFeedTableViewSource (SinglePostViewController master)
		{
			Master = master;
		}