我正在试用来自C#的iPhone应用程序,我发现很难掌握iPhone开发环境。
到目前为止,我能够在TableViewController中列出我的'Makes'。我现在希望通过选择Makes时列出的'Models'来获取。 有人可以帮我提供示例代码。
我可以使用相同的TableViewController来显示汽车的型号吗?
我没有创建任何Nib,我在代码中做了所有。
详细信息的Sql是:从make中选择标题,其中parentkey =? 父键是make的主键。
// MakeListTableViewController.h
#import <UIKit/UIKit.h>
#import "ModelTableViewController.h"
@interface MakeListTableViewController : UITableViewController {
NSMutableArray *makes;
ModelTableViewController *modelTableViewController;
UITabBarController *tabBarController;
}
@property (nonatomic, retain) ModelTableViewController * modelTableViewController;
@property (nonatomic, retain) UITabBarController *tabBarController;
@end
// MakeListTableViewController.m
#import "MakeListTableViewController.h"
#import "ModelTableViewController.h"
#import "sqlite3.h"
static int MyCallback(void *context, int count, char **values, char **columns)
{
NSMutableArray *categories = (NSMutableArray *)context;
for (int i=0; i < count; i++) {
const char *titleCString = values[i];
[makes addObject:[NSString stringWithUTF8String:titleCString]];
}
return SQLITE_OK;
}
@implementation MakeListTableViewController
- (void)loadNamesFromDatabase
{
NSString *file = [[NSBundle mainBundle] pathForResource:@"CarList" ofType:@"sqlite"];
sqlite3 *database = NULL;
if (sqlite3_open([file UTF8String], &database) == SQLITE_OK) {
sqlite3_exec(database, "select title from make where parentkey = 0", MyCallback, makes, NULL);
}
sqlite3_close(database);
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
//return 0;
return [makes count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
// THIS IS WHERE I THINK THE INDEX IS PASSED ON FOR THE DETAILS
UITableViewCell *cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:nil] autorelease];
cell.text = [makes objectAtIndex:indexPath.row];
//return cell;
return [cell autorelease];
}
- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
makes = [[NSMutableArray alloc] init];
[self loadNamesFromDatabase];
}
return self;
}
- (void)dealloc {
[makes release];
[super dealloc];
}
@end
SQL
CREATE TABLE make(pk INTEGER PRIMARY KEY, parentkey INTEGER DEFAULT 0, title TEXT);
INSERT INTO make(title) VALUES('Honda');
INSERT INTO make(title) VALUES('Toyota');
INSERT INTO make(title) VALUES('Mazda');
INSERT INTO make(title) VALUES('Nissan');
INSERT INTO make(title, parentkey) VALUES('Civic', 1);
INSERT INTO make(title, parentkey) VALUES('Accord', 1);
INSERT INTO make(title, parentkey) VALUES('Corolla', 2);
在我的C#程序中,我习惯使用主键来获取详细记录,比如GridView,它是如何在iPhone中完成的?
答案 0 :(得分:1)
这里发生了一些事情......
1-您没有从SQL查询中选择主键。您需要将其更改为“SELECT pk,title ....”以便检索它。
2-您只是将标题存回您的品牌。理想情况下,您希望创建一些存储在数组中的数据结构(可能是类),以便以后可以访问PK。
3-您需要在UITableView上实现didSelectRowAtIndexPath方法,以确定在tableview中触摸了哪一行。
一旦你完成了这些事情......你想要做的就是将一个配置好的(即你已经告诉它的)ModelTableViewController推送到你的导航控制器上。
您应该查看开发者网站上的Elements示例。这是使用SQLite填充UITableView的一个很好的例子。