iPhone上でリモートデータベースからデータをiPhoneに表示する方法については、iPhoneのチュートリアルに従っています。チュートリアルはうまくいっていますが、私は一部を理解していません(他にもいくつかの質問があります)。テーブルビューでデータを表示するiphone
以下のコードに対応して、 "rows = [[dict objectForKey:@" users "] retain];"行う? (キーを探して "users"を検索し、すべての結果を行に格納していますが、行は何ですか?テーブル行を参照していますか?もしそうなら、このデータはフィールドではなくデータベースの情報に基づいてどのようにソートできますか?
私の2番目の質問は、どのようにデータを操作できるのですか?特定の文字列値を持つフィールドだけがテーブルに表示されますか?
ありがとうございました!
- (void)viewDidLoad {
[super viewDidLoad];
NSURL *url = [NSURL URLWithString:@"http://localhost:8888/jsontest.php"]; // Modify this to match your url.
NSString *jsonreturn = [[NSString alloc] initWithContentsOfURL:url]; // Pulls the URL
NSLog(jsonreturn); // Look at the console and you can see what the restults are
NSData *jsonData = [jsonreturn dataUsingEncoding:NSUTF32BigEndianStringEncoding];
NSError *error = nil;
// In "real" code you should surround this with try and catch
NSDictionary * dict = [[CJSONDeserializer deserializer] deserializeAsDictionary:jsonData error:&error];
if (dict)
{
rows = [[dict objectForKey:@"users"] retain];
}
NSLog(@"Array: %@",rows);
[jsonreturn release];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [rows count];
}
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle
reuseIdentifier:CellIdentifier] autorelease];
}
// Configure the cell.
NSDictionary *dict = [rows objectAtIndex: indexPath.row];
cell.textLabel.text = [dict objectForKey:@"userid"];
cell.detailTextLabel.text = [dict objectForKey:@"email"];
return cell;
}
おそらく、あなたが従っているチュートリアルにリンクして、その追加のコンテキストを持つことができます。 :) –