我有一个storyboard
基于应用程序的应用程序,我想将不同的应用程序加载NSArray
到单个应用程序UITableView
中,但我不知道如何在我的应用程序中实现它...
目前我的应用程序的结构如下所示:
标签栏控制器->导航控制器-添加->添加拍卖视图控制器(UITextfield在哪里添加带有下一步按钮的拍卖名称->我加载的TableView控制器NSArray
。
基于用户从第一个应用程序的选择NSArray
,将根据他的选择在同一个didSelectRowAtIndexPath
应用程序中加载另一个不同的数据。NSArray
UITableViewController
我想实现的示例:
选择“汽车”将加载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,因此我将不胜感激任何有关我的代码的建议或帮助。谢谢!