2011-07-27 17 views
0

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; 
    } 
+0

おそらく、あなたが従っているチュートリアルにリンクして、その追加のコンテキストを持つことができます。 :) –

答えて

1

ここで、このブロックから判断:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section { 
    return [rows count]; 
} 

rows = [[dict objectForKey:@"users"] retain];が配列を参照しているように思われます。残りのコードを見ると、ユーザー情報を含むNSDictionaryオブジェクトの配列に見えます。

結果セットの特定のサブセットのみを表示する最良の方法は、条件に一致するオブジェクトを含む2番目の配列を作成し、それをテーブルビューのデータソースとして使用することです。

+0

こんにちは、私は1つのtableviewクエリを配置している。あなたは次のリンクでもこれを確認して答えられますか? http://stackoverflow.com/questions/8239543/tableview-is-not-showing-data –

関連する問題