0

我是 Objective-C 的新手,我喜欢它,我正在为当地的消防员开发一个免费的应用程序。该应用程序并没有什么困难,但我的主菜单有一个大问题:我已经在我的应用程序的所有部分创建了一个表格内容,我正在尝试通过可以访问其他 ViewControllers 的方式实现向下钻取方法,但我真的不知道该怎么做,我搜索了很多,但我只找到了引用旧版本 Xcode 的零碎文档。我正在使用版本 4.5.2 和情节提要。

在此处输入图像描述

这是菜单.h

    #import <UIKit/UIKit.h>

    @interface Menu : UITableViewController
    @property (nonatomic, retain) NSMutableArray *listaMenu; //questo sarà il mio array contentente le varie opzioni della tabella

    @end

还有menu.m

#import "Menu.h"
#import "News.h"

@interface Menu ()

@end

@implementation Menu

@synthesize listaMenu; //creo i metodi getter e setter

- (id)initWithStyle:(UITableViewStyle)style
{
    self = [super initWithStyle:style];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    [super viewDidLoad];

    self.title = @"Menu";

    //Elementi da visualizzare nella tabella
    listaMenu = [[NSMutableArray alloc] initWithObjects: @"News", @"Memebri", @"Calendario", @"Interventi", @"Galleria", @"Mezzi", @"Reclutamento",  nil];

    // Uncomment the following line to preserve selection between presentations.
    // self.clearsSelectionOnViewWillAppear = NO;

    // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
    self.navigationItem.rightBarButtonItem = self.editButtonItem;
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Return the number of sections.
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    //funzione in cui va inserito il numero di righe da visualizzare

    return [listaMenu count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

    UITableViewCell *cell = nil;

    cell =[tableView dequeueReusableCellWithIdentifier:@"PlistCell"];

    if(cell == nil){

        cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"PlistCell"];
        [cell setAccessoryType:UITableViewCellAccessoryDisclosureIndicator];
    }

    cell.textLabel.text = [listaMenu objectAtIndex:indexPath.row];

    return cell;

}


// Override to support conditional editing of the table view.
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath //Rende gli oggetti NON editabili
{
    // Return NO if you do not want the specified item to be editable.
    //return YES;
    return NO;

}




#pragma mark - Table view delegate

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    // Navigation logic may go here. Create and push another view controller.

     <#DetailViewController#> *detailViewController = [[<#DetailViewController#> alloc] initWithNibName:@"<#Nib name#>" bundle:nil];
     // ...
     // Pass the selected object to the new view controller.
     [self.navigationController pushViewController:detailViewController animated:YES];

}

@end

我希望我的问题得到很好的解释。

非常感谢!

4

1 回答 1

1

您需要阅读UISegue- 这是处理从一个UIViewController控制器到另一个控制器的转换的对象。在 Interface Builder 中,您可以 Ctrl-Drag 在 aUIButton和所需的UIViewController. 这是segues最简单的用法。

如果您需要将数据传递到目标 UIViewController,那么您需要实现该- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender方法。在此方法中,您可以获得segue.destinationViewController然后发送您需要的任何数据。NB 目标视图控制器的视图尚未加载,因此如果您尝试UIView直接自定义 s,那么它们将不存在。尽管[segue.destinationViewController view]最好配置非 UI 属性并让视图控制器本身在viewDidLoad.

于 2013-01-15T10:12:45.367 回答