-3

Web サービスからデータを取得し、テーブル ビューに格納する必要があります。私は1つのフレームワークを持っていますが、それはここにある私にとってはうまくいきません

ここでの問題は、それを作成することを許可できない使用です。それのオブジェクトを作成します。

ありがとうございました

4

2 に答える 2

1

このコードを確認してください

@interface videoViewController ()

{ 
  NSMutableData *webData;
  NSURLConnection *connection;
  NSMutableArray *array;
  NSMutableArray *array2;  
}

- (void)viewDidLoad
{

  [super viewDidLoad];
  array=[[NSMutableArray alloc]init];
  array2=[[NSMutableArray alloc]init];
  NSURL *url=[NSURL URLWithString:@"http://localhost/videosphp/videoname2.php"];
  NSURLRequest *request=[NSURLRequest requestWithURL:url];
  connection=[NSURLConnection connectionWithRequest:request delegate:self];
  if(connection)
   {
     webData=[[NSMutableData alloc]init];
   }
}


-(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse     *)response
{
  [webData setLength:0];
}


-(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
  [webData appendData:data];
}


-(void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
{
  UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"alert" message:@"Unable to    connect internet. Please check your internet connection" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
  [alert show];
  return;
}


-(void)connectionDidFinishLoading:(NSURLConnection *)connection
{
  //use NSDictionary if the data in dictionary
  NSArray *allDataArray=[NSJSONSerialization JSONObjectWithData:webData options:0    error:nil];
  for (NSDictionary *diction in allDataArray) 
  {
    NSString *videoname=[diction objectForKey:@"videoname"];
    [array addObject:videoname]; 
  }
  [[self tableview]reloadData];
}

-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
   return 1;   
}

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


-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:        (NSIndexPath    *)indexPath
 {
    static NSString *CellIdentifier=@"Cell";
    UITableViewCell *cell=[tableView    dequeueReusableCellWithIdentifier:CellIdentifier];
    if(!cell)
    {
      cell=[[UITableViewCell  alloc]initWithStyle:UITableViewCellAccessoryDisclosureIndicator     reuseIdentifier:CellIdentifier];
    }
    cell.textLabel.text=[array objectAtIndex:indexPath.row];
    return cell;
 }
于 2013-04-04T07:55:36.897 に答える