I'm making a split view iPad product search.
in the debugger, it shows I'm getting the parsed data, it just won't show up on my table view, so i decided to make a custom TableViewCell creating the .h and .m files.
but i have a problem, i have my XML parser in my MasterViewController, but i want to assign it to a label in my Custom TableViewCell object.
i only included description so it will be simple, and I wanna just at least get one thing working first and foremost.
this line: StyleMasterCell.textView.text = capturedCharacters;
does not work, how can i assign the parsed at a to the textView thats in the stylemastercell?
in the debugger, it shows I'm getting the parsed data, it just won't show up on my table view, so i decided to make a custom TableViewCell creating the .h and .m files.
but i have a problem, i have my XML parser in my MasterViewController, but i want to assign it to a label in my Custom TableViewCell object.
Code:
- (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName
namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName
{
NSLog (@"didEndElement");
if ([elementName isEqualToString:@"description"])
{
NSLog(@" decription:%@", capturedCharacters);
StyleMasterCell.textView.text = capturedCharacters;
}
capturedCharacters = nil;
if ([elementName isEqualToString:@"str_smartsearch"])
{
// We are no longer in an item element
inItemElement = NO;
}
}
i only included description so it will be simple, and I wanna just at least get one thing working first and foremost.
this line: StyleMasterCell.textView.text = capturedCharacters;
does not work, how can i assign the parsed at a to the textView thats in the stylemastercell?