public override void RowSelected(UITableView tableView, NSIndexPath indexPath)
        {
            System.Diagnostics.Debug.WriteLine("Clicked - " + _items[indexPath.Row].Title);

            SeletecedStory = _items[indexPath.Row].Link;
            _controller.PerformSegue("ShowStory", this);
        }