2

私のアプリは に基づいておりUISplitViewController、ユニバーサル アプリです。
私のアプリには、ウェブサーバーからデータを検索するこのコードがあります。

結果は 100 のカウントを示していますが、これNSMutableArrayは.nil[myTable reloadData]

どうすれば解決できますか?

シナリオ Page1: 検索エンジンは値を別のビューに渡します。 Page2: [Page1] から値を受け取り、次にインスタンスに渡しますsendData。JSON で結果を取得し、NSMutableArray', using this後で NSMutableArray to populateUITableViewに変換します。viewdidload

コード:

- (void)configureView
{
    if (self.detailItem) {
        NSLog(@"ConfigureView");
        [self sendData];
        [self refreshTable];
    }
}

- (void)viewDidLoad
{
    [super viewDidLoad];
    NSLog(@"viewdidload");
    [self configureView];
}

- (void)didReceiveMemoryWarning
{
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

-(void) refreshTable 
{
    NSLog(@"Refresh Table");
    [myTable reloadData];
    NSLog(@"Counter:%i",allFilteredItemsArray.count);
}

#pragma mark - Table

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    NSLog(@"numberOfRowsInSection: %i", allFilteredItemsArray.count);
    return [allFilteredItemsArray count];
}

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

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

    static NSString *CellIdentifier = @"fileredCell";
    UITableViewCell *cell = [myTable dequeueReusableCellWithIdentifier:CellIdentifier];
    HardwareCell *hardwareCell = [[HardwareCell alloc] init];

    // Configure the cell...
    NSDictionary *item = [allFilteredItemsArray objectAtIndex:[indexPath row]];
    hardwareCell.lbl_model = [item objectForKey:@"name"];

    return cell;

}

#pragma mark - Searching Asset

-(void)sendData
{    
    NSString *searchString = [self.detailItem description];

    .........ignored some of the code............

    allFilteredItemsArray = [NSJSONSerialization JSONObjectWithData:responseData options:kNilOptions error:&error];

    NSLog(@"Search Count: %i", allFilteredItemsArray.count);
    NSLog(@"End Searching Data.");

}

結果:

2012-10-17 10:45:54.535 Portal[10753:c07] viewdidload
2012-10-17 10:45:54.536 Portal[10753:c07] Value to be sent: %/%/%/%/%/1
2012-10-17 10:45:54.537 Portal[10753:c07] ConfigureView
2012-10-17 10:45:54.537 Portal[10753:c07] Start Seraching Data...
2012-10-17 10:45:54.923 Portal[10753:c07] Search Count: 100
2012-10-17 10:45:54.923 Portal[10753:c07] End Searching Data.
2012-10-17 10:45:54.923 Portal[10753:c07] Refresh Table
2012-10-17 10:45:54.924 Portal[10753:c07] Counter:100
2012-10-17 10:45:54.924 Portal[10753:c07] numberOfRowsInSection: 0
4

3 に答える 3

1

クラスレベルのオブジェクトですが、配列を強制的に割り当てる必要があります。viewdidload に allFilteredItemsArray を割り当て、それを self.allFilteredItemsArray として書き込みます。次のコードを確認してください。

-(void)viewDidLoad {

[super viewDidLoad];

NSMutableArray *tempArray=[[NSMutableArray alloc] init];

self.allFilteredItemsArray=tempArray;

[tempArray リリース];

NSLog(@"viewdidload");

[自己configureView];

}

また、次のように配列カウントに %d を使用できます。

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {

NSLog(@"numberOfRowsInSection: %d",[allFilteredItemsArray カウント]);

[allFilteredItemsArray カウント] を返します。

}

于 2012-10-17T07:33:00.427 に答える
0

問題を解決する可能性のある self.allFilteredItemsArray として allFilteredItemsArray にアクセスする必要があります;-)

于 2012-10-17T04:21:36.387 に答える
0

がサブクラスのプロパティである場合allFilteredItemsArrayは、 として参照する必要があります[self allFilteredItemsArray]

于 2012-10-17T04:12:40.537 に答える