getche_c Ответов: 0

Прототип ячейки не ориентироваться толчок к следующему-представление-контроллер раскадровки


Я создал приложение single view с помощью раскадровки.
У меня есть файл viewcontoller. h

#import <UIKit/UIKit.h>
    
    @interface ViewController : UIViewController<UITableViewDelegate, UITableViewDataSource>
    
    
    @end

У меня есть файл viewcontoller. m
#import "ViewController.h"
    
    @interface ViewController ()
    
    @end
    
    @implementation ViewController
    {
        NSArray *recipes;
    }
    - (void)viewDidLoad {
        [super viewDidLoad];
        // Do any additional setup after loading the view, typically from a nib.
        recipes = [NSArray arrayWithObjects:@"Egg Benedict", @"Mushroom Risotto", @"Full Breakfast", @"Hamburger", @"Ham and Egg Sandwich", @"Creme Brelee", @"White Chocolate Donut", @"Starbucks Coffee", @"Vegetable Curry", @"Instant Noodle with Egg", @"Noodle with BBQ Pork", @"Japanese Noodle with Pork", @"Green Tea", @"Thai Shrimp Cake", @"Angry Birds Cake", @"Ham and Cheese Panini", nil];
    }
    -(NSInteger)tableView :(UITableView *)tableView numberOfRowsInSection :(NSInteger)section
    {
        return [recipes count];
    
    }
    -(UITableViewCell *) tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
    {
        static NSString *simpleTableIdentifier=@"RecpieCell";
        UITableViewCell *cell =[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
        if(cell ==nil)
        {
            cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:simpleTableIdentifier];
        }
        
        cell.textLabel.text=[recipes objectAtIndex:indexPath.row];
        return cell;
        
    }

    @end

В файле раскадровки у меня есть три контроллера вида

> 1-навигационный контроллер 2-контроллер просмотра рецептурной книги 3-просмотр
& gt; контроллер

Прототип ячейки табличного представления контроллера представления рецептурной книги соединен через push segue с контроллером представления.Проблема в том, что контроллер просмотра книги рецептов не переходит к контроллеру просмотра?

Что я уже пробовал:

www.google.com .Я видел учебник по [^] .
From this link you can download the sample for correction dropbox.com/s/kpybdmtov7i0wne/RecipeBook.zip?dl=0 

0 Ответов