我正在访问一个Web服务,在那里我给出了开始日期和结束日期,作为回报,我从Web服务获得了一个字符串数组。 字符串数组中的每个字符串都是此格式 “1 |银行名称|帐号NO | 121 |抽屉名称”。现在我想在表视图的第一行显示此内容。 第二行应该用第二个String数组字符串占用。 我尝试以下方式,但我的桌子似乎是空的。请帮助。
#import "RootViewController.h"
@implementation RootViewController
- (void)viewDidLoad {
[super viewDidLoad];
recordResults = FALSE;
NSString *soapMessage = [NSString stringWithFormat:
@"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n"
"<S:Envelope xmlns:S=\"http://schemas.xmlsoap.org/soap/envelope/\">\n"
"<S:Header/\>\n"
"<S:Body>\n"
"<ns2:reviewDeposit xmlns:ns2=\"http://services.cbp.syntel.org/\">\n"
"<FromDate>%@</FromDate>\n"
"<ToDate>%@</ToDate>\n"
"</ns2:reviewDeposit>\n"
"</S:Body>\n"
"</S:Envelope>\n", @"Sep 10, 2009", @"Dec 10, 2009"
];
.........bla bla
}
/*.....methods for accessing web service*/
-(void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *) namespaceURI qualifiedName:(NSString *)qName attributes: (NSDictionary *)attributeDict{
if( [elementName isEqualToString:@"return"])
{
if(!soapResults)
{
soapResults = [[NSMutableString alloc] init];
}
recordResults = TRUE;
}}
-(void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string{
if( recordResults )
{
//DFSSoapTestAppDelegate *appdel=(DFSSoapTestAppDelegate *)[[UIApplication sharedApplication]delegate];
[soapResults appendString: string];
}}
-(void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName{
if( [elementName isEqualToString:@"return"])
{
recordResults = FALSE;
//chunks=[soapResults componentsSeparatedByString:@"|"];
//NSString *s=[chunks objectAtIndex:0];
if([soapResults isEqualToString:@"Error"]){
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Error" message:@"Sorry Please Refine Your Search"
delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
[alert show];
[alert release];
startdate.text=@"";
enddate.text=@"";
}else {
[chunks addObject:soapResults];//where chunks is a NSMutable array
NSLog(@"The Soap Results are.....");
NSLog(soapResults);// "1|Bank Name|Account NO|121|Drawer Name"
}
}
/
}
- (void)didReceiveMemoryWarning {
// Releases the view if it doesn't have a superview.
[super didReceiveMemoryWarning];
// Release any cached data, images, etc that aren't in use.
}
- (void)viewDidUnload {
// Release anything that can be recreated in viewDidLoad or on demand.
// e.g. self.myOutlet = nil;
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {return 1;}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {return [chunks count];}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
// Configure the cell.
NSString *cellValue=[chunks objectAtIndex:indexPath.row];
cell.text =cellValue;
return cell;
}
- (void)dealloc {
[super dealloc];
}
@end
答案 0 :(得分:0)
解析器完成后,您需要[tableView reloadData]
。
答案 1 :(得分:0)
它可能与您调用解析器的位置有关。如果解析器尚未运行,则表将为空。当有数据时,您不会显示强制更新表的代码。可能在视图的初始加载后从未调用'tableView:numberOfRowsInSection:'。
我建议在解析器的末尾记录chucks
,以确保它实际上有值。您也可以在填充单元格之前记录它。
我建议将用于连接到Web服务的解析器和方法移动到与表控制器不同的对象中。通常,您希望将控制器和视图中的数据的提取/格式化/管理分开。在这种特定情况下,您不希望控制器在需要更新表时等待一些回复。相反,你应该有一个模型对象,只需将控制器交给一个数组。这也可以轻松处理与获取数据相关的错误。