-4

私はiPhoneのsqliteの初心者で、数日学びました。私はインターネットとこのサイトで検索しましたが、sqlite とその使用について混乱していました。多くの値を持つ json URL が 1 つあります。1 つの特定の値を受け取って解析し、sqlite に保存して、UITableView で sqlite から読み取りたいと考えています。

私はjsonを解析し、特定のクエリでsqlite DBに保存しますが、データの取得と表示については知りません。これをコードで教えてください。私の英語が下手ならごめんなさい。

4

3 に答える 3

1

ここで私の答えを見てください: -

https://stackoverflow.com/posts/16322989/edit

それがあなたを助けることを願っています

配列値を表示するには、次のコードを使用します。

Now in the cellForRowAtIndexPath:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

     UITableViewCell *cell=[[UITableViewCell alloc]  initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
    //Add the Bg Image to the cell
     //Add the Label
     UILabel *cellTitle=[[UILabel alloc]initWithFrame:CGRectMake(15, 7, 300, 30)];
     [cellTitle setBackgroundColor:[UIColor clearColor]];
     [cellTitle setFont:[UIFont fontWithName:@"Helvetica-Bold" size:12]];
     [cellTitle setTextColor:[UIColor darkGrayColor]];
     [cellTitle setText:[[array objectAtIndexPath:indexPath.row] objectForKey:@"Name"]];
     [cell.contentView addSubview:cellTitle];
     return  cell;

   }

numberOfRowsInSection にも:

   -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section   
   {
       return [array count];
   }
于 2013-05-04T06:52:30.517 に答える
0

メソッド内で次のコードを使用します- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

cell.textLabel.text = [ArrayName objectAtIndex:indexPath.row];

これはあなたを助けるかもしれません

于 2013-05-04T07:35:31.390 に答える