Hi when I get the value from XML which is :
<settings>
<setting name='Conference Number' value='#159' />
</settings>
then I wrote that :
NSString *textType = [content substringToIndex:46];
When I print this:
NSLog(@"print here the textType%@", textType);
it prints : print here the textType<settings>
<setting name='Conference Number'
so that is what I want but when I say :
if ([textType isEqual: @"<setting name='Conference Number'"]){
// Do something
}
It doesn't work, any help appreciate