0

検索バーがあり、json http URL をシリアル番号で検索したかったのです。したがって、次のjson URLを実行すると:

http://www.ddproam.co.za/Central/Asset/AssetsWithSerial?Serial=S00000001

実際の出力:

[{"AssetID":1,"AssetName":"Asset 1","AssetDesc":"This is a manually inserted Asset","AssetTypeID":1,"AssetTypeDesc":"This is a manually inserted Asset Type"}]

シリアル S00000001 などの検索バーを検索して、テーブル セルに json 呼び出しの AssetName を入力しようとしています。

json を配列に入れて実行しようとしていますが、次のようなアプリ クラッシュ エラーが発生します。

@property (strong, nonatomic) NSArray *loadedSearches;


'-[__NSArrayI objectForKeyedSubscript:]: unrecognized selector sent to instance 0x1d857700'

これが私のコードです:

-(void)searchBar:(UISearchBar *)searchBar textDidChange:(NSString *)searchText
{

NSString *searchQuery = [NSString stringWithFormat:@"http://www.ddproam.co.za/Central/Asset/AssetsWithSerial?Serial='%@'",searchText];

searchQuery = [searchQuery stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

NSURL *url = [[NSURL alloc] initWithString:searchQuery];

NSURLRequest *request = [[NSURLRequest alloc] initWithURL:url];

AFJSONRequestOperation *operation = [AFJSONRequestOperation JSONRequestOperationWithRequest:request
                                                                                    success:^(NSURLRequest *request, NSHTTPURLResponse *response, id JSON)
                                     {
                                         self.loadedSearches = JSON[@"AssetName"];

                                         // refreshing the TableView when the block gets the response
                                         [searchTableView reloadData];
                                     }
                                                                                    failure:^(NSURLRequest *request, NSHTTPURLResponse *response, NSError *error, id JSON)
                                     {
                                         NSLog(@"%@", error.localizedDescription);
                                     }];

[operation start];


}

 - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
//return self.loadedSearches.count;
return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return self.loadedSearches.count;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell"];

if(cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
}

 if (self.loadedSearches[indexPath.row] == 0) {

    UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"TableCell Tapped" message:@"Yeah you tapped a table cell" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
    [alert show];
}
NSLog(@"indexPath.row=%d loadedSearches.count=%d", indexPath.row, self.loadedSearches.count);

cell.textLabel.text = self.loadedSearches[indexPath.row][@"AssetName"];
return cell;
}

 - (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
 {
  // Perform segue to candy detail
  UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"TableCell Tapped" message:@"Yeah you tapped a table cell" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[alert show];
[tableView deselectRowAtIndexPath:indexPath animated:YES];

}

ここでエラーが発生していると思います:

      self.loadedSearches = JSON[@"AssetName"];
4

1 に答える 1