Hello,
i'm new to v2 and I'm updating an app using objective-c.
When I call a listFolder, I get results.
[[client.filesRoutes listFolder:searchPath]
setResponseBlock:^(DBFILESListFolderResult *result, DBFILESListFolderError *routeError, DBRequestError *error) {
if (result) {
NSLog(@result.entries %@.",result.entries);
result.entries = "{\n id = \"id:TT-P7bAf8VEAAAAAAAC6Xw\";\n name = 7777;\n \"path_display\" = \"/Sites/7777\";\n \"path_lower\" = \"/sites/7777\";\n}",
However I need to get this data over to a UItableview controller. Where the results.entries would be placed in:
NSDictionary *item = [results.entries objectAtIndex:indexPath.row];
I'm looking for way to get results.entries to a usable format.
Thanks,
Michael