-1

電話でいくつかのリストを取得しShoppingListsていWCFます。

私のコード:

#import "ListTableViewController.h"
#import "ListServiceSvc.h"

@interface ListTableViewController (){
   // NSMutableArray *shoppingLists;
}
@property (nonatomic, retain) NSMutableArray *shoppingList;

@end

@implementation ListTableViewController

- (id)initWithStyle:(UITableViewStyle)style
{
    self = [super initWithStyle:style];
    if (self) {
        // Custom initialization
    }
    return self;
}

- (void)viewDidLoad
{
    _shoppingList = [NSMutableArray array];
    [self loadListsFromRemoteServer];
    [super viewDidLoad];
}

-(void) loadListsFromRemoteServer
{
    NSString *uname = @"Test4";
    NemListBinding *binding  = [[ListServiceSvc NemListBinding]initWithAddress:@"http://balder.ucn.dk/dm76_gr5/WCF.ListService.svc/custom?singleWsdl"];
    binding.logXMLInOut=YES;
    ListServiceSvc_GetShoppingListsWithUname *parms = [[ListServiceSvc_GetShoppingListsWithUname alloc]init];
    parms.uname = uname;
    [binding GetShoppingListsWithUnameAsyncUsingParameters:parms delegate:self];
}

- (void) operation:(NemListBindingOperation *)operation completedWithResponse:(NemListBindingResponse *)response
{
    NSArray *responseHeaders = response.headers;
    NSArray *responseBodyParts = response.bodyParts;
    //[NSThread sleepForTimeInterval:5.0];
    NSMutableArray *shoppingListFromWebserver = [[NSMutableArray alloc] init];
    // step 1 fill in the blanks.
    for(id header in responseHeaders) {
        // here do what you want with the headers, if there's anything of value in them
    }
    for (id mine in responseBodyParts)
    {
        if ([mine isKindOfClass:[ListServiceSvc_GetShoppingListsWithUnameResponse class]])
        {
            for (id slist in [[mine GetShoppingListsWithUnameResult] ShoppingList])
            {
                [shoppingListFromWebserver addObject:slist];
                NSLog(@"new list :: RESPONSE FROM SERVER :: nList %@", [slist ShoppingListName]);
                //self.result.text = [self.result.text stringByAppendingString:[slist shoppingListName]];
            }
        }
    }
    [self performSelectorOnMainThread:@selector(updateNewView:) withObject:shoppingListFromWebserver waitUntilDone:NO];
}

-(void) updateNewView:(NSMutableArray*) result
{
    _shoppingList = result;
    NSLog( @"new list - number of news :: %u", [_shoppingList count]);
    [self.tableView reloadData];
}

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

#pragma mark - Table view data source

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

//- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
//{
//    // Return the number of rows in the section.
//    return 10;
//}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    NSLog(@"cellforrow");
    static NSString *CellIdentifier = @"ListCell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
    if (cell == nil) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:CellIdentifier];
    }
    //cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    // Configure the cell...

    id shopList = [_shoppingList objectAtIndex:indexPath.row];

    cell.textLabel.text = [shopList ShoppingListName];
    return cell;

}

Xcode でアプリを実行しても何も起こりません。ログウィンドウで、ログが

NSLog( @"new list - number of news :: %u", [_shoppingList count]);

は値(4)を返しますが、メソッドで作成したNSLogi は出力されCellForRowAtIndexPathません。そこには到達していないブレークポイントもあります。メソッドに到達しないのはなぜですか?

4

3 に答える 3

4

これらのメソッドはnumberOfSectionsInTableViewnumberOfRowsInSectionTableView が表示するデータの数を決定するために重要です。次のようになります。

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
    return 1; // the number of different sections in your table view
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    // Return the number of rows in the section.
    return [_shoppingList count]; // the number of data in your shopping list
}
于 2013-05-31T07:19:33.290 に答える
0

これらのメソッドをコメントアウトしないでください:numberOfSectionsInTableViewおよびnumberOfRowsInSection.

少なくともnumberOfRowsInSection必要であり、必要な/必要な行数を返す必要があります。私の知る限り、これは_shoppingList.countあなたの場合に当てはまるはずです。

于 2013-05-31T07:15:00.940 に答える