I am trying to separate strings from a UIPasteBoard
pasteBoard = [UIPasteboard pasteboardWithName:@"FileManager" create:YES];
NSArray *indexes = [self.tableView indexPathsForSelectedRows];
NSMutableArray *items = [[NSMutableArray alloc]init];
NSError *error = nil;
for (NSIndexPath *path in indexes) {
NSUInteger index = [path indexAtPosition:[path length] - 1];
NSString *filePath = [[NSString stringWithFormat:@"%@/%@", [fileManager currentDirectoryPath],[contentsArray objectAtIndex:index]]stringByStandardizingPath];
[items addObject:filePath];
}
pasteBoard.strings = items;
NSLog(@"All strings: %@",pasteBoard.strings);
NSLog(@"Strings count: %i",[pasteBoard.strings count]);
The NSLog returns this:
"/Users/heli0s/Library/Application Support/iPhone Simulator/4.3/Applications/D15BF3E6-ED9F-4838-B26C-49CFB1CB7F0A/Documents",
"/Users/heli0s/Library/Application Support/iPhone Simulator/4.3/Applications/D15BF3E6-ED9F-4838-B26C-49CFB1CB7F0A/FileManager.app"
I am just trying to get one of those strings