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

link|improve this question
Heli0s, can you elaborate? I see your question is answered for a while, and it may be due to unclarity. Also - what did the 2 final NSLogs produce? – Reuven Dec 20 '11 at 10:34
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.