0

我有一个storyboard基于应用程序的应用程序,我想将不同的应用程序加载NSArray到单个应用程序UITableView中,但我不知道如何在我的应用程序中实现它...

目前我的应用程序的结构如下所示:

标签栏控制器->导航控制器-添加->添加拍卖视图控制器(UITextfield在哪里添加带有下一步按钮的拍卖名称->我加载的TableView控制器NSArray

基于用户从第一个应用程序的选择NSArray,将根据他的选择在同一个didSelectRowAtIndexPath应用程序中加载另一个不同的数据。NSArrayUITableViewController

我想实现的示例:

选择“汽车”将加载NSArray汽车列表 - 再次选择“汽车”类别将加载汽车品牌NSArray等等......

示例表视图流程

我想存储用户选择,NSArray然后在所有步骤中显示所有选择的选项 new UITableView Controller

到目前为止,我设法创建了允许设置拍卖名称并首先加载的应用程序NSArray
我需要帮助来进行下一步并NSArray根据用户的选择加载新的UITableView Controller

我的文件:

SelectClassTableViewController.h

#import <UIKit/UIKit.h>

@interface SelectClassTableViewController : UITableViewController <UITableViewDataSource, UITableViewDataSource>

@property (strong, nonatomic) IBOutlet UITableView *Classes;

@end

SelectClassTableViewController.h

#import "SelectClassTableViewController.h"

@interface SelectClassTableViewController ()
{
    NSArray *ClassesArray;
}

@end

@implementation SelectClassTableViewController

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

- (void)viewDidLoad
{
    [super viewDidLoad];

    ClassesArray = [[NSArray alloc] initWithObjects:@"Cars", @"Motorcycles", @"Boats", @"Planes", @"Other", nil];
    self.Classes.delegate = self;
    self.Classes.dataSource = self;

}

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

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    // Number of sections in TableView
    return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows in the section.
    return ClassesArray.count;
}

// Set name of grouped table view
- (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section {
    return @"Select Car Type:";
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    static NSString *CellIdentifier = @"ClassesCell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];

    // Configure the cell...

    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
    }

    // Sets 
    cell.textLabel.text = [ClassesArray objectAtIndex:indexPath.row];
    return cell;
}

#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

.

我知道可以使用UITableViewDataSource,但我不知道如何在我的应用程序中实现这个协议。我仍在学习 Objective-C,因此我将不胜感激任何有关我的代码的建议或帮助。谢谢!

4

1 回答 1

0

在头文件中创建一个 NSString。在 viewDidLoad 中,将 NSString 设置为@"Main". 在didSelectRowAtIndexPath中,将 NSString 设置为您要显示的任何数组(数组 1、数组 2、数组 3...),然后重新加载表。

cellForRowAtIndexPath中,通过使用 if 语句检查 NSString 的值来检测哪个数组是焦点。

if ([string isEqualToString: @"Main"]) {

    //show main array

} else if ([string isEqualToString: @"Cars"]) {

    //show cars array...

}
于 2012-11-24T18:22:47.777 回答