hi all
i want to save nssarray object into string. code is
for (NSMutableDictionary *dictionary in blogEntries)
{
NSArray *titlearray = [dictionary objectForKey:@"title"];
// know i want to store the object in titlearray into string how shoud i
nsstring *STemp=? how should i write
NSRange titleResultsRange=[sTemp rangeOfString:searchText options:NSCaseInsensitiveSearch];
if(titleResultsRange.length>0)
{
NSDictionary *titlearrayDic=[NSDictionary dictionaryWithObject:titlearray forKey:@"title"];
[storeAll addEntriesFromDictionary:titlearrayDic];
[listOfItems addObject:[storeAll copy]];
}
}
thanks in advance