Я пытаюсь получить контроллер таблицы для отображения внутри представления контейнера внутри контроллера представления. Это моя раскадровка установить:(Swift) Показать TableViewController в представлении Container ViewController
Это мои быстрые файлы:
Вот код для моего просмотра страницы Swiping:
func getStepZero() -> ProfileViewController {
return storyboard!.instantiateViewControllerWithIdentifier("ProfileView") as! ProfileViewController
}
func getStepOne() -> HomeViewController {
return storyboard!.instantiateViewControllerWithIdentifier("HomeView") as! HomeViewController
}
func getStepTwo() -> MatchesSegueViewController {
return storyboard!.instantiateViewControllerWithIdentifier("MatchesSegueView") as! MatchesSegueViewController
}
func pageViewController(pageViewController: UIPageViewController, viewControllerBeforeViewController viewController: UIViewController) -> UIViewController? {
if viewController.isKindOfClass(MatchesSegueViewController) {
// 2 -> 1
return getStepOne()
} else if viewController.isKindOfClass(HomeViewController) {
// 1 -> 0
return getStepZero()
} else {
// 0 -> end of the road
return nil
}
}
func pageViewController(pageViewController: UIPageViewController, viewControllerAfterViewController viewController: UIViewController) -> UIViewController? {
if viewController.isKindOfClass(ProfileViewController) {
// 0 -> 1
return getStepOne()
} else if viewController.isKindOfClass(HomeViewController) {
// 1 -> 2
return getStepTwo()
} else {
// 2 -> end of the road
return nil
}
}
TableView код :
class MatchTableViewController: UITableViewController {
let cellId = "cellId"
override func viewDidLoad() {
super.viewDidLoad()
// Uncomment the following line to preserve selection between presentations
// self.clearsSelectionOnViewWillAppear = false
// Uncomment the following line to display an Edit button in the navigation bar for this view controller.
// self.navigationItem.rightBarButtonItem = self.editButtonItem()
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
// MARK: - Table view data source
override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
// #warning Incomplete implementation, return the number of sections
return 0
}
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// #warning Incomplete implementation, return the number of rows
return 5
}
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
// line below comes with function
//let cell = tableView.dequeueReusableCellWithIdentifier("reuseIdentifier", forIndexPath: indexPath)
// Configure the cell...
// lines below are from YouTube tutorial
let cell = UITableViewCell(style: .Subtitle, reuseIdentifier: cellId)
cell.textLabel?.text = "DUMMY TEXT"
return cell
}
У меня есть контроллер отображения страницы, поэтому, когда я прокручиваю вправо, я иду в контроллер своего вида, который должен немедленно перейти к моему контроллеру табличного вида (надеюсь, что segue не будет видно) через встроенный сегмент. Как я могу это сделать? Когда я прокручиваю вправо, это показывает мне пустой стол, хотя он должен показывать некоторые фиктивные ячейки данных.
Любая помощь очень ценится.
Вы можете разместить код «как вы проводите право» и ваш источник данных о Tableview ? –
@AliRiahipour Добавлен код контроллера просмотра страницы и код представления таблицы – evanhaus